![]() |
Home · All Namespaces · All Classes · Functions · Coding Style · Plugins · File Structure |
00001 /* 00002 * Stellarium 00003 * Copyright (C) 2005 Fabien Chereau 00004 * 00005 * This program is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU General Public License 00007 * as published by the Free Software Foundation; either version 2 00008 * of the License, or (at your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00018 */ 00019 00020 // This file contains translations for all translatable strings stored within data files 00021 // It is not meant to be compiled but just parsed by gettext 00022 00023 class Translations 00024 { 00025 void Translations(){;} 00026 00027 static translationList() 00028 { 00029 // Generate Gettext strings for traduction 00030 assert(0); 00031 00032 // Planets and satellites from ssystem.ini 00033 N_("Sun"); 00034 N_("Mercury"); 00035 N_("Venus"); 00036 N_("Earth"); 00037 N_("Moon"); 00038 N_("Mars"); 00039 N_("Deimos"); 00040 N_("Phobos"); 00041 N_("Jupiter"); 00042 N_("Io"); 00043 N_("Europa"); 00044 N_("Ganymede"); 00045 N_("Callisto"); 00046 N_("Saturn"); 00047 N_("Mimas"); 00048 N_("Enceladus"); 00049 N_("Tethys"); 00050 N_("Dione"); 00051 N_("Rhea"); 00052 N_("Titan"); 00053 N_("Hyperion"); 00054 N_("Iapetus"); 00055 N_("Phoebe"); 00056 N_("Neptune"); 00057 N_("Uranus"); 00058 N_("Pluto"); 00059 N_("Charon"); 00060 N_("Solar System Observer"); 00061 00062 // Cardinals names 00063 N_("N"); // North 00064 N_("S"); // South 00065 N_("E"); // East 00066 N_("W"); // West 00067 00068 // Constellation cultures 00069 N_("Chinese"); 00070 N_("Egyptian"); 00071 N_("Inuit"); 00072 N_("Korean"); 00073 N_("Lakota"); 00074 N_("Navajo"); 00075 N_("Norse"); 00076 N_("Polynesian"); 00077 N_("Western"); 00078 N_("Tupi-Guarani"); 00079 00080 } 00081 };