Fixed name of Ascendant

it was typed consequently as “ascendent”
This commit is contained in:
Gergely Polonkai 2013-10-03 23:09:55 +02:00
parent 981c91d702
commit 4506e31946
4 changed files with 8 additions and 8 deletions

View File

@ -86,7 +86,7 @@ msgid "Dark Moon"
msgstr "Sötét Hold"
#: ../src/swe-glib.c:133
msgid "Ascendent"
msgid "Ascendant"
msgstr "Aszcendens"
#: ../src/swe-glib.c:134

View File

@ -555,10 +555,10 @@ gswe_moment_calculate_house_positions(GsweMoment *moment, GError **err)
moment->priv->house_revision = moment->priv->revision;
// The Ascendent, MC and Vertex points are also calculated by swe_houses(),
// The Ascendant, MC and Vertex points are also calculated by swe_houses(),
// so let's update them.
if (gswe_moment_has_planet(moment, GSWE_PLANET_ASCENDENT)) {
calculate_data_by_position(moment, GSWE_PLANET_ASCENDENT, ascmc[0], err);
if (gswe_moment_has_planet(moment, GSWE_PLANET_ASCENDANT)) {
calculate_data_by_position(moment, GSWE_PLANET_ASCENDANT, ascmc[0], err);
}
if (gswe_moment_has_planet(moment, GSWE_PLANET_MC)) {
@ -680,7 +680,7 @@ gswe_moment_calculate_planet(GsweMoment *moment, GswePlanet planet, GError **err
if (planet_data->planet_info->real_body == FALSE) {
if (
(planet_data->planet_info->planet != GSWE_PLANET_ASCENDENT)
(planet_data->planet_info->planet != GSWE_PLANET_ASCENDANT)
&& (planet_data->planet_info->planet != GSWE_PLANET_MC)
&& (planet_data->planet_info->planet != GSWE_PLANET_VERTEX)
) {

View File

@ -53,7 +53,7 @@
* @GSWE_PLANET_MOON_NODE: the mean ascending (north) Moon node
* @GSWE_PLANET_MOON_APOGEE: the mean Moon apogee (sometimes called Dark Moon,
* or Lilith)
* @GSWE_PLANET_ASCENDENT: the ascendent
* @GSWE_PLANET_ASCENDANT: the ascendant
* @GSWE_PLANET_MC: midheaven (Medium Coeli)
* @GSWE_PLANET_VERTEX: the Vertex (the point where the ecliptic meats the
* primal vertical)
@ -80,7 +80,7 @@ typedef enum {
GSWE_PLANET_VESTA,
GSWE_PLANET_MOON_NODE,
GSWE_PLANET_MOON_APOGEE,
GSWE_PLANET_ASCENDENT,
GSWE_PLANET_ASCENDANT,
GSWE_PLANET_MC,
GSWE_PLANET_VERTEX
} GswePlanet;

View File

@ -137,7 +137,7 @@ gswe_init(void)
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_VESTA, SE_VESTA, TRUE, _("Vesta"), 2.0, 0);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_MOON_NODE, SE_MEAN_NODE, TRUE, _("Ascending Moon Node"), 2.0, 1);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_MOON_APOGEE, SE_MEAN_APOG, TRUE, _("Dark Moon"), 2.0, 0);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_ASCENDENT, -1, FALSE, _("Ascendent"), 9.0, 2);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_ASCENDANT, -1, FALSE, _("Ascendant"), 9.0, 2);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_MC, -1, FALSE, _("Midheaven"), 5.0, 1);
ADD_PLANET(gswe_planet_info_table, planet_info, GSWE_PLANET_VERTEX, -1, FALSE, _("Vertex"), 2.0, 0);