Skip to content

Commit

Permalink
language fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gzotti committed May 15, 2018
1 parent 3c2ddf1 commit 321b76f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ SET(ENABLE_GPS 1 CACHE BOOL "Define whether GPS queries should be supported.")
# SPOUT allows relaying the Stellarium OpenGL framebuffer as DirectX texture in other programs.
# It exists on Windows only. Syphon is a similar system for MacOS, this might be added by a Mac developer.
IF(WIN32)
IF(${CMAKE_SYSTEM_VERSION} LESS 6.1 ) # Need Windows 7 to enable support of Spout
IF(${CMAKE_SYSTEM_VERSION} LESS 6.1 ) # Need Windows 7 or later to enable support of Spout
SET(ENABLE_SPOUT 0)
MESSAGE(STATUS "Spout support disabled due to operating system requirement")
ELSE()
Expand Down Expand Up @@ -400,7 +400,7 @@ IF(WIN32)
SET(ISS_OPENSSL_LIBS "${ISS_OPENSSL_LIBS}\nSource: \"${OPENSSL_LICENSE}\"; DestDir: \"{app}\"; Flags: ignoreversion")
ENDIF()
IF((NOT EXISTS ${OPENSSL_SSLEAY32_LIBRARY_DLL}) AND (NOT EXISTS ${OPENSSL_LIBEAY32_LIBRARY_DLL}))
SET(ISS_OPENSSL_LIBS "; OpenSSL libraries isn't found")
SET(ISS_OPENSSL_LIBS "; OpenSSL libraries not found")
ENDIF()
ENDIF()

Expand Down
4 changes: 2 additions & 2 deletions plugins/Pulsars/src/gui/pulsarsDialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
<item>
<widget class="QToolButton" name="pulsarMarkerColor">
<property name="toolTip">
<string>Color of markers of pulsars</string>
<string>Marker Color for pulsars</string>
</property>
</widget>
</item>
Expand All @@ -322,7 +322,7 @@
<item>
<widget class="QToolButton" name="pulsarGlitchesMarkerColor">
<property name="toolTip">
<string>Color of markers of pulsars with glitches</string>
<string>Marker Color for pulsars with glitches</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion plugins/Quasars/src/Quasars.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ StelPluginInfo QuasarsStelPluginInterface::getPluginInfo() const
info.displayedName = N_("Quasars");
info.authors = "Alexander Wolf";
info.contact = "[email protected]";
info.description = N_("A plugin that shows some quasars brighter than 18 visual magnitude. A catalogue of quasars compiled from 'Quasars and Active Galactic Nuclei' (13th Ed.) (Veron+ 2010)");
info.description = N_("A plugin that shows some quasars brighter than visual magnitude 18. The catalogue of quasars was compiled from 'Quasars and Active Galactic Nuclei' (13th Ed.) (Veron+ 2010)");
info.version = QUASARS_PLUGIN_VERSION;
info.license = QUASARS_PLUGIN_LICENSE;
return info;
Expand Down

0 comments on commit 321b76f

Please sign in to comment.