From 694a9f8fb19bc77dc81b104380cabcd842d2980a Mon Sep 17 00:00:00 2001 From: Cyp Date: Wed, 21 Jul 2010 18:47:37 +0200 Subject: [PATCH 01/24] Don't spam log with "[NET_InitPlayers] Players initialized" in single-player menu. --- src/frontend.c | 45 +++++++++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/src/frontend.c b/src/frontend.c index e9120e5d0..2626e8352 100644 --- a/src/frontend.c +++ b/src/frontend.c @@ -236,6 +236,27 @@ static void loadOK( void ) } } +static void SPinit(void) +{ + uint8_t playercolor; + + // FIXME: We should do a SPinit() to make sure all the variables are reset correctly. + // game.type is switched to SKIRMISH in startMultiOptions() + NetPlay.bComms = false; + bMultiPlayer = false; + bMultiMessages = false; + game.type = CAMPAIGN; + NET_InitPlayers(); + NetPlay.players[0].allocated = true; + game.skDiff[0] = UBYTE_MAX; + // make sure we have a valid color choice for our SP game. Valid values are 0, 4-7 + playercolor = getPlayerColour(0); + if (playercolor >= 1 && playercolor <= 3) + { + setPlayerColour(0,0); // default is green + } +} + BOOL runSinglePlayerMenu(void) { UDWORD id; @@ -253,48 +274,35 @@ BOOL runSinglePlayerMenu(void) } else { - uint8_t playercolor = 0; - - // FIXME: We should do a SPinit() to make sure all the variables are reset correctly. - // game.type is switched to SKIRMISH in startMultiOptions() - NetPlay.bComms = false; - bMultiPlayer = false; - bMultiMessages = false; - game.type = CAMPAIGN; - NET_InitPlayers(); - NetPlay.players[0].allocated = true; - game.skDiff[0] = UBYTE_MAX; - // make sure we have a valid color choice for our SP game. Valid values are 0, 4-7 - playercolor = getPlayerColour(0); - if (playercolor >= 1 && playercolor <= 3) - { - setPlayerColour(0,0); // default is green - } - id = widgRunScreen(psWScreen); // Run the current set of widgets switch(id) { case FRONTEND_NEWGAME: + SPinit(); frontEndNewGame(); break; case FRONTEND_LOADCAM2: + SPinit(); sstrcpy(aLevelName, "CAM_2A"); changeTitleMode(STARTGAME); initLoadingScreen(true); break; case FRONTEND_LOADCAM3: + SPinit(); sstrcpy(aLevelName, "CAM_3A"); changeTitleMode(STARTGAME); initLoadingScreen(true); break; case FRONTEND_LOADGAME: + SPinit(); addLoadSave(LOAD_FRONTEND,SaveGamePath,"gam",_("Load Saved Game")); // change mode when loadsave returns break; case FRONTEND_SKIRMISH: + SPinit(); ingame.bHostSetup = true; lastTitleMode = SINGLE; changeTitleMode(MULTIOPTION); @@ -305,6 +313,7 @@ BOOL runSinglePlayerMenu(void) break; case FRONTEND_CHALLENGES: + SPinit(); addChallenges(); break; From e27ccca05c918a3ccd0061c832b486fd254bce32 Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Wed, 21 Jul 2010 17:01:07 +0000 Subject: [PATCH 02/24] Windows cross-build: Make quesoglc compile on Ubuntu. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11247 4a71c877-e1ca-e34f-864e-861f7616d084 --- win32/Makefile.am | 1 + win32/libs/quesoglc/Makefile | 11 +++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/win32/Makefile.am b/win32/Makefile.am index 9ee9be97d..7cb633771 100644 --- a/win32/Makefile.am +++ b/win32/Makefile.am @@ -16,6 +16,7 @@ EXTRA_DIST = __BUILD_SCRIPT \ libs/ogg/Makefile \ libs/png/Makefile \ libs/quesoglc/Makefile \ + libs/quesoglc/patches \ libs/sdl/Makefile \ libs/sdl/patches \ libs/theora/Makefile \ diff --git a/win32/libs/quesoglc/Makefile b/win32/libs/quesoglc/Makefile index ce165fadb..a405a32ca 100644 --- a/win32/libs/quesoglc/Makefile +++ b/win32/libs/quesoglc/Makefile @@ -16,7 +16,14 @@ $(PKG_SOURCEBASE) fetch-stamp: $(PKG_SOURCEBASE)/configure.in: fetch-stamp -$(PKG_SOURCEBASE)/configure: $(PKG_SOURCEBASE)/configure.in +patch-stamp: fetch-stamp + @for patch in patches/*.diff; do \ + echo sed -e "s/\$$sourcebase\b/$(PKG_SOURCEBASE)/g" -e "s/\$$host_triplet\b/$(HOST_TRIPLET)/g" "$$patch" \| patch -p0; \ + sed -e "s/\$$sourcebase\b/$(PKG_SOURCEBASE)/g" -e "s/\$$host_triplet\b/$(HOST_TRIPLET)/g" "$$patch" | patch -p0 || exit ; \ + done + touch patch-stamp + +$(PKG_SOURCEBASE)/configure: $(PKG_SOURCEBASE)/configure.in patch-stamp cd $(PKG_SOURCEBASE) && ./bootstrap $(PKG_SOURCEBASE)/config.status: $(PKG_SOURCEBASE)/configure @@ -37,6 +44,6 @@ all: build build: $(TARGETS) clean: - $(RM) -r $(PKG_SOURCEBASE) fetch-stamp + $(RM) -r $(PKG_SOURCEBASE) fetch-stamp patch-stamp .PHONY: all build clean From bf3006d31cfda7d6885329f966795fba02f6ed1a Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Wed, 21 Jul 2010 17:01:31 +0000 Subject: [PATCH 03/24] Make sure we use at least 640x480. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11248 4a71c877-e1ca-e34f-864e-861f7616d084 --- lib/ivis_opengl/screen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ivis_opengl/screen.c b/lib/ivis_opengl/screen.c index cb83c95b6..cf2d85752 100644 --- a/lib/ivis_opengl/screen.c +++ b/lib/ivis_opengl/screen.c @@ -96,6 +96,8 @@ bool screenInitialise( screenHeight = height; screenDepth = bitDepth; } + screenWidth = MAX(screenWidth, 640); + screenHeight = MAX(screenHeight, 480); if (!video_info) { From 9d553bccab070113acbe83c7b63b1314e0be6410 Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Wed, 21 Jul 2010 17:05:30 +0000 Subject: [PATCH 04/24] Add missing file for r11247. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11251 4a71c877-e1ca-e34f-864e-861f7616d084 --- .../libs/quesoglc/patches/glew_h_include_stdint_h.diff | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 win32/libs/quesoglc/patches/glew_h_include_stdint_h.diff diff --git a/win32/libs/quesoglc/patches/glew_h_include_stdint_h.diff b/win32/libs/quesoglc/patches/glew_h_include_stdint_h.diff new file mode 100644 index 000000000..0f0c2e6f6 --- /dev/null +++ b/win32/libs/quesoglc/patches/glew_h_include_stdint_h.diff @@ -0,0 +1,10 @@ +--- quesoglc-0.7.3~svn913/include/GL/glew.h.old 2008-06-04 23:47:50.000000000 +0200 ++++ quesoglc-0.7.3~svn913/include/GL/glew.h 2010-07-21 16:27:25.000000000 +0200 +@@ -158,6 +158,7 @@ + # define _PTRDIFF_T_ + #endif + /* */ ++#include + #ifndef _STDINT_H + #ifdef _WIN64 + typedef __int64 int64_t; From 9a05862fbaefa39f473da5c5d7fbb0264c8932d0 Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Wed, 21 Jul 2010 17:13:29 +0000 Subject: [PATCH 05/24] Update .gitignore git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11253 4a71c877-e1ca-e34f-864e-861f7616d084 --- .gitignore | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 19ca2c88a..35b615ca6 100644 --- a/.gitignore +++ b/.gitignore @@ -39,35 +39,33 @@ win32/release win32/build win32/downloads win32/libs/dejavu/dejavu-fonts-ttf-*/ -win32/libs/dejavu/extract-stamp -win32/libs/devpkg/extract-stamp +win32/libs/dejavu/*-stamp +win32/libs/devpkg/*-stamp win32/libs/expat/expat-*/ -win32/libs/expat/extract-stamp -win32/libs/fontconfig/extract-stamp +win32/libs/expat/*-stamp +win32/libs/fontconfig/*-stamp win32/libs/fontconfig/fontconfig-*/ -win32/libs/freetype2/extract-stamp +win32/libs/freetype2/*-stamp win32/libs/freetype2/freetype-*/ -win32/libs/gettext/extract-stamp +win32/libs/gettext/*-stamp win32/libs/gettext/gettext-*/ -win32/libs/iconv/extract-stamp +win32/libs/iconv/*-stamp win32/libs/iconv/libiconv-*/ -win32/libs/ogg/extract-stamp +win32/libs/ogg/*-stamp win32/libs/ogg/libogg-*/ -win32/libs/png/extract-stamp +win32/libs/png/*-stamp win32/libs/png/libpng-*/ -win32/libs/popt/extract-stamp -win32/libs/popt/patch-stamp +win32/libs/popt/*-stamp win32/libs/popt/popt-*/ -win32/libs/quesoglc/fetch-stamp +win32/libs/quesoglc/*-stamp win32/libs/quesoglc/quesoglc-*/ win32/libs/sdl/SDL-*/ -win32/libs/sdl/extract-stamp -win32/libs/sdl/patch-stamp -win32/libs/theora/extract-stamp +win32/libs/sdl/*-stamp +win32/libs/theora/*-stamp win32/libs/theora/libtheora-*/ -win32/libs/vorbis/extract-stamp +win32/libs/vorbis/*-stamp win32/libs/vorbis/libvorbis-*/ -win32/libs/zlib/extract-stamp +win32/libs/zlib/*-stamp win32/libs/zlib/zlib-*/ # Autogenerated files: From 1b811abceaba4c817a7c7d0e811948902bf033a9 Mon Sep 17 00:00:00 2001 From: Cyp Date: Thu, 22 Jul 2010 14:07:34 +0200 Subject: [PATCH 06/24] Before receiving game list from server, clear old games from list, and don't receive more than there are room for in the array. --- lib/netplay/netplay.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/netplay/netplay.c b/lib/netplay/netplay.c index 71f444c6a..93d63bb27 100644 --- a/lib/netplay/netplay.c +++ b/lib/netplay/netplay.c @@ -2608,7 +2608,7 @@ BOOL NETfindGame(void) && socketReadReady(tcp_socket) && (result = readNoInt(tcp_socket, &gamesavailable, sizeof(gamesavailable)))) { - gamesavailable = ntohl(gamesavailable); + gamesavailable = MIN(ntohl(gamesavailable), ARRAY_SIZE(NetPlay.games)); } else { @@ -2631,6 +2631,9 @@ BOOL NETfindGame(void) debug(LOG_NET, "receiving info on %u game(s)", (unsigned int)gamesavailable); + // Clear old games from list. + memset(NetPlay.games, 0x00, sizeof(NetPlay.games)); + do { // Attempt to receive a game description structure From a31beaec058c2d7de46d607ab5cd608afef64b70 Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Thu, 22 Jul 2010 17:10:54 +0000 Subject: [PATCH 07/24] Fix "make check". Disable astartest, since it's broken after the rename of astar.c to astar.cpp. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11258 4a71c877-e1ca-e34f-864e-861f7616d084 --- tests/Makefile.am | 2 -- tests/astartest.c | 2 +- tests/maptest.c | 5 ++++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 1e0b5ee0c..461c081b8 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,7 +5,6 @@ BUILT_SOURCES = \ maplist.txt check_PROGRAMS = \ - astartest \ maptest \ pointtreetest @@ -23,7 +22,6 @@ CLEANFILES = \ $(BUILT_SOURCES) TESTS = \ - astartest \ maptest \ pointtreetest diff --git a/tests/astartest.c b/tests/astartest.c index 847b1f73d..865ac7a00 100644 --- a/tests/astartest.c +++ b/tests/astartest.c @@ -56,7 +56,7 @@ static inline BOOL fpathBaseBlockingTile(SDWORD x, SDWORD y, PROPULSION_TYPE pro } #define WZ_TESTING -#include "../src/astar.c" +#include "../src/astar.cpp" static void printmap(MOVE_CONTROL *move, PATHJOB *job) { diff --git a/tests/maptest.c b/tests/maptest.c index 476d6a815..f43fa7a0f 100644 --- a/tests/maptest.c +++ b/tests/maptest.c @@ -6,6 +6,7 @@ int main(int argc, char **argv) { + char datapath[PATH_MAX]; FILE *fp = fopen("maplist.txt", "r"); if (!fp) @@ -14,7 +15,9 @@ int main(int argc, char **argv) return -1; } PHYSFS_init(argv[0]); - PHYSFS_addToSearchPath("../data", 1); + strcat(datapath, getenv("srcdir")); + strcat(datapath, "/../data"); + PHYSFS_addToSearchPath(datapath, 1); while (!feof(fp)) { From a16c5f7df97a3d752d4c84b8cba1cfee180513cd Mon Sep 17 00:00:00 2001 From: Cyp Date: Thu, 22 Jul 2010 12:27:32 +0200 Subject: [PATCH 08/24] Show oil wells burning in the radar instead of pulsing. --- data/base/images/intfac.img | 7 ++++ data/base/images/intfac1.png | Bin 8611 -> 11841 bytes data/base/images/intfac_differentOil.img | 6 ++++ src/intdisplay.c | 42 +++++++++++++---------- src/intfac.h | 9 ++++- 5 files changed, 45 insertions(+), 19 deletions(-) create mode 100644 data/base/images/intfac_differentOil.img diff --git a/data/base/images/intfac.img b/data/base/images/intfac.img index a79472dbd..400e5aff5 100644 --- a/data/base/images/intfac.img +++ b/data/base/images/intfac.img @@ -518,3 +518,10 @@ 5,32,192,32,32,-15,-15,"IMAGE CURSOR BRIDGE" 5,64,192,32,32,-15,-15,"IMAGE CURSOR BOMB" 5,20,86,179,18,0,0,"IMAGE SLIDER AI" +1,39,98,3,3,-1,-1,"IMAGE RAD BURNRESREAD" +1,79,133,6,9,-3,-6,"IMAGE RAD BURNRES1" +1,86,133,6,9,-3,-6,"IMAGE RAD BURNRES2" +1,94,134,5,8,-2,-5,"IMAGE RAD BURNRES3" +1,101,133,5,9,-2,-6,"IMAGE RAD BURNRES4" +1,108,132,5,10,-2,-7,"IMAGE RAD BURNRES5" +1,114,131,6,11,-3,-8,"IMAGE RAD BURNRES6" diff --git a/data/base/images/intfac1.png b/data/base/images/intfac1.png index 644dd262e462b952ca39817363028dea67adfbe5..a0e1e8610ce008a5a771b1ac02698b201eb1aae9 100644 GIT binary patch literal 11841 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 z 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 diff --git a/data/base/images/intfac_differentOil.img b/data/base/images/intfac_differentOil.img new file mode 100644 index 000000000..01031133a --- /dev/null +++ b/data/base/images/intfac_differentOil.img @@ -0,0 +1,6 @@ +1,37,102,6,9,-3,-6,"IMAGE RAD BURNRES1" +1,44,102,7,10,-3,-6,"IMAGE RAD BURNRES2" +1,52,103,9,10,-4,-5,"IMAGE RAD BURNRES3" +1,62,102,5,9,-2,-6,"IMAGE RAD BURNRES4" +1,68,101,7,11,-3,-7,"IMAGE RAD BURNRES5" +1,76,100,9,13,-4,-8,"IMAGE RAD BURNRES6" diff --git a/src/intdisplay.c b/src/intdisplay.c index e55b099d7..accec87a7 100644 --- a/src/intdisplay.c +++ b/src/intdisplay.c @@ -92,9 +92,6 @@ #define FORM_OPEN_ANIM_DURATION (GAME_TICKS_PER_SEC/6) // Time duration for form open/close anims. -//number of pulses in the blip for the radar -#define NUM_PULSES 3 - //the loop default value #define DEFAULT_LOOP 1 @@ -3062,6 +3059,11 @@ void drawRadarBlips(int radarX, int radarY, float pixSizeH, float pixSizeV) UDWORD i; SDWORD width, height; int x = 0, y = 0; + static const uint16_t imagesEnemy[] = {IMAGE_RAD_ENMREAD, IMAGE_RAD_ENM1, IMAGE_RAD_ENM2, IMAGE_RAD_ENM3}; + static const uint16_t imagesResource[] = {IMAGE_RAD_RESREAD, IMAGE_RAD_RES1, IMAGE_RAD_RES2, IMAGE_RAD_RES3}; + static const uint16_t imagesArtifact[] = {IMAGE_RAD_ARTREAD, IMAGE_RAD_ART1, IMAGE_RAD_ART2, IMAGE_RAD_ART3}; + static const uint16_t imagesBurningResource[] = {IMAGE_RAD_BURNRESREAD, IMAGE_RAD_BURNRES1, IMAGE_RAD_BURNRES2, IMAGE_RAD_BURNRES3, IMAGE_RAD_BURNRES4, IMAGE_RAD_BURNRES5, IMAGE_RAD_BURNRES6}; + static const uint16_t *const imagesProxTypes[] = {imagesEnemy, imagesResource, imagesArtifact}; // store the width & height of the radar/mini-map width = scrollMaxX - scrollMinX; @@ -3097,7 +3099,8 @@ void drawRadarBlips(int radarX, int radarY, float pixSizeH, float pixSizeV) /* Go through all the proximity Displays */ for (psProxDisp = apsProxDisp[selectedPlayer]; psProxDisp != NULL; psProxDisp = psProxDisp->psNext) { - PROX_TYPE proxType; + unsigned animationLength = ARRAY_SIZE(imagesEnemy) - 1; // Same size as imagesResource and imagesArtifact. + const uint16_t *images; if (psProxDisp->psMessage->player != selectedPlayer) { @@ -3106,7 +3109,8 @@ void drawRadarBlips(int radarX, int radarY, float pixSizeH, float pixSizeV) if (psProxDisp->type == POS_PROXDATA) { - proxType = ((VIEW_PROXIMITY*)((VIEWDATA *)psProxDisp->psMessage->pViewData)->pData)->proxType; + PROX_TYPE proxType = ((VIEW_PROXIMITY*)((VIEWDATA *)psProxDisp->psMessage->pViewData)->pData)->proxType; + images = imagesProxTypes[proxType]; } else { @@ -3115,32 +3119,33 @@ void drawRadarBlips(int radarX, int radarY, float pixSizeH, float pixSizeV) ASSERT(psFeature && psFeature->psStats, "Bad feature message"); if (psFeature && psFeature->psStats && psFeature->psStats->subType == FEAT_OIL_RESOURCE) { - proxType = PROX_RESOURCE; + images = imagesResource; + if (fireOnLocation(psFeature->pos.x, psFeature->pos.y)) + { + images = imagesBurningResource; + animationLength = ARRAY_SIZE(imagesBurningResource) - 1; // Longer animation for burning oil wells. + } } else { - proxType = PROX_ARTEFACT; + images = imagesArtifact; } } // Draw the 'blips' on the radar - use same timings as radar blips if the message is read - don't animate if (psProxDisp->psMessage->read) { - imageID = IMAGE_RAD_ENM3 + (proxType * (NUM_PULSES + 1)); + imageID = images[0]; } else { // Draw animated - if ((gameTime2 - psProxDisp->timeLastDrawn) > delay) + if (realTime - psProxDisp->timeLastDrawn > delay) { - psProxDisp->strobe++; - if (psProxDisp->strobe > (NUM_PULSES-1)) - { - psProxDisp->strobe = 0; - } - psProxDisp->timeLastDrawn = gameTime2; + psProxDisp->strobe = (psProxDisp->strobe + 1) % animationLength; + psProxDisp->timeLastDrawn = realTime; } - imageID = (UWORD)(IMAGE_RAD_ENM1 + psProxDisp->strobe + (proxType * (NUM_PULSES + 1))); + imageID = images[1 + psProxDisp->strobe]; } if (psProxDisp->type == POS_PROXDATA) @@ -3173,10 +3178,11 @@ void drawRadarBlips(int radarX, int radarY, float pixSizeH, float pixSizeV) } if (audio_GetPreviousQueueTrackRadarBlipPos(&x, &y)) { - int strobe = (gameTime2/delay)%NUM_PULSES; + unsigned animationLength = ARRAY_SIZE(imagesEnemy) - 1; + int strobe = (realTime/delay) % animationLength; x = (x / TILE_UNITS - scrollMinX) * pixSizeH; y = (y / TILE_UNITS - scrollMinY) * pixSizeV; - imageID = (UWORD)(IMAGE_RAD_ENM1 + strobe + (PROX_ENEMY * (NUM_PULSES + 1))); + imageID = imagesEnemy[strobe]; // NOTE: On certain missions (limbo & expand), there is still valid data that is stored outside the // normal radar/mini-map view. We must now calculate the radar/mini-map's bounding box, and clip diff --git a/src/intfac.h b/src/intfac.h index 1f0892011..5414b090b 100644 --- a/src/intfac.h +++ b/src/intfac.h @@ -549,7 +549,14 @@ enum { IMAGE_CURSOR_ATTACH, IMAGE_CURSOR_BRIDGE, IMAGE_CURSOR_BOMB, - IMAGE_SLIDER_AI + IMAGE_SLIDER_AI, + IMAGE_RAD_BURNRESREAD, + IMAGE_RAD_BURNRES1, + IMAGE_RAD_BURNRES2, + IMAGE_RAD_BURNRES3, + IMAGE_RAD_BURNRES4, + IMAGE_RAD_BURNRES5, + IMAGE_RAD_BURNRES6 }; #ifdef __cplusplus From bb7f9605693f156e968d7c0800391c9dd4b3801a Mon Sep 17 00:00:00 2001 From: Cyp Date: Wed, 21 Jul 2010 15:03:42 +0200 Subject: [PATCH 09/24] Make cliffs (blocking tiles) visible on radar. --- src/radar.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/radar.c b/src/radar.c index 393cd27a7..ca84f0087 100644 --- a/src/radar.c +++ b/src/radar.c @@ -338,6 +338,12 @@ static PIELIGHT appliedRadarColour(RADAR_DRAW_MODE radarDrawMode, MAPTILE *WTile col.byte.r = sqrtf(col.byte.r * WTile->illumination); col.byte.b = sqrtf(col.byte.b * WTile->illumination); col.byte.g = sqrtf(col.byte.g * WTile->illumination); + if (terrainType(WTile) == TER_CLIFFFACE) + { + col.byte.r /= 2; + col.byte.b /= 2; + col.byte.g /= 2; + } if (!hasSensorOnTile(WTile, selectedPlayer)) { col.byte.r /= 2; @@ -355,6 +361,12 @@ static PIELIGHT appliedRadarColour(RADAR_DRAW_MODE radarDrawMode, MAPTILE *WTile col.byte.r = sqrtf(col.byte.r * (WTile->illumination + WTile->height) / 2); col.byte.b = sqrtf(col.byte.b * (WTile->illumination + WTile->height) / 2); col.byte.g = sqrtf(col.byte.g * (WTile->illumination + WTile->height) / 2); + if (terrainType(WTile) == TER_CLIFFFACE) + { + col.byte.r /= 2; + col.byte.b /= 2; + col.byte.g /= 2; + } if (!hasSensorOnTile(WTile, selectedPlayer)) { col.byte.r /= 2; From 1db4f15973c820a96e87c19b1a2a8a9abf981b06 Mon Sep 17 00:00:00 2001 From: Cyp Date: Thu, 22 Jul 2010 19:16:27 +0200 Subject: [PATCH 10/24] Change do-while to while, since it doesn't make sense to try to read a game structure when there are none in the lobby. --- lib/netplay/netplay.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/netplay/netplay.c b/lib/netplay/netplay.c index 93d63bb27..21e2726f4 100644 --- a/lib/netplay/netplay.c +++ b/lib/netplay/netplay.c @@ -2634,7 +2634,7 @@ BOOL NETfindGame(void) // Clear old games from list. memset(NetPlay.games, 0x00, sizeof(NetPlay.games)); - do + while (gamecount < gamesavailable) { // Attempt to receive a game description structure if (!NETrecvGAMESTRUCT(&NetPlay.games[gamecount])) @@ -2650,7 +2650,7 @@ BOOL NETfindGame(void) } ++gamecount; - } while (gamecount < gamesavailable); + } return true; } From b808df33f4a0c661752f401aedc6c1be59318e91 Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Fri, 23 Jul 2010 02:32:32 +0000 Subject: [PATCH 11/24] Fix transporter ETA image. Closes #2001. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11270 4a71c877-e1ca-e34f-864e-861f7616d084 --- data/base/images/intfac.img | 4 ++-- data/base/images/intfac3.png | Bin 8459 -> 8701 bytes data/base/images/intfac4.png | Bin 7752 -> 7453 bytes 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/base/images/intfac.img b/data/base/images/intfac.img index 400e5aff5..3504082f7 100644 --- a/data/base/images/intfac.img +++ b/data/base/images/intfac.img @@ -305,7 +305,7 @@ 1,149,144,18,17,0,0,"IMAGE NRUTER" 4,129,180,86,17,0,0,"IMAGE MISSION CLOCK" 4,217,180,37,17,0,0,"IMAGE LAUNCHDOWN" -4,1,224,112,17,0,0,"IMAGE TRANSETA UP" +3,1,151,112,17,0,0,"IMAGE TRANSETA UP" 4,129,198,20,17,0,0,"IMAGE ORD FAC1UP" 4,150,198,20,17,0,0,"IMAGE ORD FAC1DOWN" 4,171,198,20,17,0,0,"IMAGE ORD FAC2UP" @@ -462,7 +462,7 @@ 0,186,220,28,28,-14,-14,"IMAGE BLUE5" 0,216,220,28,28,-14,-14,"IMAGE BLUE6" 4,116,237,37,17,0,0,"IMAGE LAUNCHUP" -4,156,237,98,17,0,0,"IMAGE TRANSETA DOWN" +3,114,151,112,17,0,0,"IMAGE TRANSETA DOWN" 2,1,157,36,24,0,0,"IMAGE ORD FIREDES UP" 2,38,157,36,24,0,0,"IMAGE ORD FIREDES DOWN" 3,0,97,11,12,0,-9,"IMAGE ASCII64" diff --git a/data/base/images/intfac3.png b/data/base/images/intfac3.png index 14b49ca2e1849d65c402b5d525c867506c03c3b4..83bb5821cdee9c4c5f5a73823ac1dbb6fe008d34 100644 GIT binary patch delta 8366 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 delta 8175 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 diff --git a/data/base/images/intfac4.png b/data/base/images/intfac4.png index 81647be80cfc0ebaab115ffcfc5d81f5a154a9f5..75c49ce6013e6f76ed30e9bff3fa47e99b2779d5 100644 GIT binary patch delta 7267 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 jCzYSXujTFKbJ&$;r% delta 7552 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 pq2QL+ZVl$r Date: Fri, 23 Jul 2010 23:12:56 +0000 Subject: [PATCH 12/24] Show complete game name in lobby tooltip. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11275 4a71c877-e1ca-e34f-864e-861f7616d084 --- src/multiint.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/multiint.c b/src/multiint.c index 47bfb14bf..42aef0ede 100644 --- a/src/multiint.c +++ b/src/multiint.c @@ -3293,7 +3293,7 @@ void displayRemoteGame(WIDGET *psWidget, UDWORD xOffset, UDWORD yOffset, PIELIGH BOOL Hilight = false; BOOL Down = false; UDWORD i = psWidget->UserData; - char tmp[8]; + char tmp[8], gamename[StringSize]; unsigned int ping; if (LobbyError != ERROR_NOERROR) @@ -3384,11 +3384,12 @@ void displayRemoteGame(WIDGET *psWidget, UDWORD xOffset, UDWORD yOffset, PIELIGH } //draw game name - while(iV_GetTextWidth(NetPlay.games[i].name) > (psWidget->width-110) ) + sstrcpy(gamename, NetPlay.games[i].name); + while(iV_GetTextWidth(gamename) > (psWidget->width-110) ) { - NetPlay.games[i].name[strlen(NetPlay.games[i].name)-1]='\0'; + gamename[strlen(gamename)-1]='\0'; } - iV_DrawText(NetPlay.games[i].name, x + 100, y + 18); // name + iV_DrawText(gamename, x + 100, y + 18); // name iV_SetFont(font_small); // font iV_DrawText(NetPlay.games[i].versionstring, x + 100, y + 32); // version From 09879b8a83b604831aa7bfc04dd271446b8f7ea1 Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Fri, 23 Jul 2010 23:29:27 +0000 Subject: [PATCH 13/24] Update translations. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11277 4a71c877-e1ca-e34f-864e-861f7616d084 --- po/cs.po | 265 +++++++++++++++++++++++++++------------------------- po/da.po | 265 +++++++++++++++++++++++++++------------------------- po/de.po | 265 +++++++++++++++++++++++++++------------------------- po/en_GB.po | 265 +++++++++++++++++++++++++++------------------------- po/es.po | 265 +++++++++++++++++++++++++++------------------------- po/et_EE.po | 265 +++++++++++++++++++++++++++------------------------- po/fi.po | 264 ++++++++++++++++++++++++++------------------------- po/fr.po | 265 +++++++++++++++++++++++++++------------------------- po/fy.po | 264 ++++++++++++++++++++++++++------------------------- po/ga.po | 264 ++++++++++++++++++++++++++------------------------- po/hr.po | 265 +++++++++++++++++++++++++++------------------------- po/it.po | 265 +++++++++++++++++++++++++++------------------------- po/la.po | 264 ++++++++++++++++++++++++++------------------------- po/lt.po | 264 ++++++++++++++++++++++++++------------------------- po/nb.po | 264 ++++++++++++++++++++++++++------------------------- po/nl.po | 265 +++++++++++++++++++++++++++------------------------- po/pl.po | 265 +++++++++++++++++++++++++++------------------------- po/pt.po | 265 +++++++++++++++++++++++++++------------------------- po/pt_BR.po | 265 +++++++++++++++++++++++++++------------------------- po/ro.po | 264 ++++++++++++++++++++++++++------------------------- po/ru.po | 265 +++++++++++++++++++++++++++------------------------- po/sl.po | 265 +++++++++++++++++++++++++++------------------------- po/uk_UA.po | 265 +++++++++++++++++++++++++++------------------------- po/zh_CN.po | 264 ++++++++++++++++++++++++++------------------------- po/zh_TW.po | 265 +++++++++++++++++++++++++++------------------------- 25 files changed, 3492 insertions(+), 3125 deletions(-) diff --git a/po/cs.po b/po/cs.po index 974c4ae6e..748954b0d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-05-09 16:05+0000\n" "Last-Translator: Lubos \n" "Language-Team: Czech \n" @@ -12489,8 +12489,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "HráÄ" @@ -12647,32 +12647,32 @@ msgstr "HráÄ" msgid "Player dropped" msgstr "HráÄ" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Nemohu stavÄ›t. Ropný vrt hoří." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - PoÅ¡kození %d%% - ZkuÅ¡enosti %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - PoÅ¡kození %d%% - ZkuÅ¡enosti %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 #, fuzzy msgid "Truck ordered to build Oil Derrick" msgstr "Nákladní auto dostalo rozkaz postavit ropnou věž" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Nákladní auto dostalo rozkaz postavit ropnou věž" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Nákladní auto dostalo rozkaz postavit ropnou věž" @@ -12799,13 +12799,13 @@ msgstr "TUTORIÃLY" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "ZpÄ›t" @@ -12832,272 +12832,287 @@ msgstr "Nahraj Hru" msgid "SINGLE PLAYER" msgstr "HRA JEDNOHO HRÃÄŒE" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "NaÄti Uloženou Hru" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "HRA VÃCE HRÃČŮ" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "PÅ™ipojit se ke hÅ™e" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "NASTAVENÃ" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Herní nastavení" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Grafická nastavení" -#: src/frontend.c:414 +#: src/frontend.c:423 #, fuzzy msgid "Video Options" msgstr "Zvuková nastavení" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Zvuková nastavení" -#: src/frontend.c:416 +#: src/frontend.c:425 #, fuzzy msgid "Mouse Options" msgstr "Herní nastavení" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Mapování kláves" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "PÅ™ehrávání videa" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Celá obrazovka" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Zapnuto" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Vypnuto" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Mlha" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Mlha" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "VáleÄná mlha" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Titulky" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Stíny" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Hlasitost Å™eÄi" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Hlasitost efektů" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Hlasitost hudby" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Projeví se až po restartu hry" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Grafický mód*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "RozliÅ¡ení*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Velikost textury" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 #, fuzzy msgid "Reverse Rotation" msgstr "ObraÅ¥ myÅ¡" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Herní nastavení" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "OtoÄit doleva" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Obtížnost" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Snadná" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normální" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Těžká" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Rychlost rolování" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Jazyk" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Barva jednotky" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13221,7 +13236,7 @@ msgid "Exit Game" msgstr "UkonÄit hru" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Panel průbÄ›hu" @@ -13289,16 +13304,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Panel průbÄ›hu" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "" @@ -14155,8 +14170,8 @@ msgstr "PokraÄovat ve hÅ™e" msgid "GAME SAVED :" msgstr "HRA ULOŽENA!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14474,17 +14489,17 @@ msgstr "Host zaÄíná hru" msgid "Players" msgstr "HráÄi" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/da.po b/po/da.po index f2d82c411..44883ee1b 100644 --- a/po/da.po +++ b/po/da.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-05-09 16:08+0000\n" "Last-Translator: carson \n" "Language-Team: Dansk \n" @@ -12775,8 +12775,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Spiller" @@ -12934,31 +12934,31 @@ msgstr "Spiller" msgid "Player dropped" msgstr "Spiller" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Kan ikke bygge pÃ¥ brændende oilebrøn." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, fuzzy, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Skade %d%% - Drab %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Skade %d%% - Drab %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Truck beordret til at bygge oliebrøn." -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Truck beordret til at bygge oliebrøn." -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Truck beordret til at bygge oliebrøn." @@ -13079,13 +13079,13 @@ msgstr "TUTORIALS" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Tilbage" @@ -13113,274 +13113,289 @@ msgstr "Indlæs spil" msgid "SINGLE PLAYER" msgstr "SOLO SPILLER" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Indlæs gemt spil" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "FLER SPILLER" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Udbyd spil" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Forbind til vært" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "TILVALG" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Spil indstillinger" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Grafik indstillinger" -#: src/frontend.c:414 +#: src/frontend.c:423 #, fuzzy msgid "Video Options" msgstr "Lyd indstillinger" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Lyd indstillinger" -#: src/frontend.c:416 +#: src/frontend.c:425 #, fuzzy msgid "Mouse Options" msgstr "Spil indstillinger" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Tastatur indstillinger" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Ryst skærm" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Til" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Fra" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "TÃ¥ge" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "AfstandstÃ¥ge" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "KrigstÃ¥ge" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Undertekster" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Stemme volume" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Effekt volume" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Musik volume" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Grafik indstillinger" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Vindue" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "" -#: src/frontend.c:776 +#: src/frontend.c:785 #, fuzzy msgid "Texture size" msgstr "Besvar ild" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 #, fuzzy msgid "Reverse Rotation" msgstr "Omvendt mus" -#: src/frontend.c:963 +#: src/frontend.c:972 #, fuzzy msgid "Trap Cursor" msgstr "Transportskib" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Spil indstillinger" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Drej til venstre" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Sværhedsgræd" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Begynder" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Øvet" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Svær" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Kamera hastighed" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Sprog" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Holdfarve" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13506,7 +13521,7 @@ msgid "Exit Game" msgstr "Forlad spil" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Statuslinje" @@ -13574,16 +13589,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Effektivitet" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Indsalmet energi" @@ -14429,8 +14444,8 @@ msgstr "Fortsæt spil" msgid "GAME SAVED :" msgstr "SPIL GEMT!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14750,17 +14765,17 @@ msgstr "Værten starter spillet" msgid "Players" msgstr "Spillere" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/de.po b/po/de.po index dc356ab4e..8588bf983 100644 --- a/po/de.po +++ b/po/de.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2010-06-05 07:09+0100\n" "Last-Translator: Steven 'Kreuvf' Koenig \n" "Language-Team: Deutsch \n" @@ -12468,8 +12468,8 @@ msgstr "Spielleiter" msgid "go directly to host screen" msgstr "Direkt zum Spielleiterschirm" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Spieler" @@ -12623,30 +12623,30 @@ msgstr "Spieler hat das Spiel verlassen" msgid "Player dropped" msgstr "Spieler ausgefallen" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Bau nicht möglich. Ölquelle brennt." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Schaden %d%% - Erfahrung %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Verbündet - Schaden %d%% - Erfahrung %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "LKW wurde beauftragt, einen Ölbohrturm zu bauen" -#: src/display.c:2078 +#: src/display.c:2091 msgid "2 trucks ordered to build Oil Derrick" msgstr "LKW wurde beauftragt, einen Ölbohrturm zu bauen" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "LKW wurde beauftragt, einen Ölbohrturm zu bauen" @@ -12764,13 +12764,13 @@ msgstr "TUTORIALS" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Zurück" @@ -12796,264 +12796,279 @@ msgstr "Spielstand laden" msgid "SINGLE PLAYER" msgstr "Einzelspieler" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Spielstand laden" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "Mehrspieler" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Spiel eröffnen" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Spiel beitreten" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPTIONEN" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Spieloptionen" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Grafikeinstellungen" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Videoeinstellungen" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Audioeinstellungen" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Mausoptionen" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Tastenzuordnung" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Videowiedergabe" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Vollbild" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Kameraerschütterungen" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "An" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Aus" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Nebel" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Dunst" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Nebel des Krieges" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Untertitel" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Schatten" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "GRAFIKOPTIONEN" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Sprachlautstärke" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Effektlautstärke" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Musiklautstärke" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "AUDIOOPTIONEN" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Wirkt sich bei Spielneustart aus" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Grafikmodus*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Fenster" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Auflösung*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Texturgröße" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Vertikale Synchronisation" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "VIDEOOPTIONEN" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Könnte die Spielgeschwindigkeit negativ beeinflussen" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Drehrichtung umkehren" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Mauszeiger einfangen" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Bunte Mauszeiger*" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Maustasten vertauschen" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Nach links rotieren" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "MAUSOPTIONEN" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Schwierigkeitsgrad" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Einfach" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Schwer" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Scrollgeschwindigkeit" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Sprache" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Einheitenfarbe" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "SPIELOPTIONEN" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod: " @@ -13171,7 +13186,7 @@ msgid "Exit Game" msgstr "Spiel verlassen" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Fortschrittsbalken" @@ -13241,15 +13256,15 @@ msgstr "" "\n" "Warzone wird versuchen das Spiel ohne sie zu laden." -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 msgid "Build Progress" msgstr "Fortschrittsbalken" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "Fortschrittsbalken" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Energie angesammelt" @@ -14084,8 +14099,8 @@ msgstr "Spiel fortsetzen" msgid "GAME SAVED :" msgstr "SPIEL GESPEICHERT :" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "Sie haben %u Energie in einem Ölfass gefunden." @@ -14393,17 +14408,17 @@ msgstr "Der Spielleiter startet das Spiel" msgid "Players" msgstr "Spieler" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "Sende Karte: %d%%" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Karte: %d%% heruntergeladen" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "SPIELLEITER" diff --git a/po/en_GB.po b/po/en_GB.po index 74c5f6dd0..865995376 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-05-05 12:29+0000\n" "Last-Translator: Jen Ockwell \n" "Language-Team: English (United Kingdom) \n" @@ -12764,8 +12764,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Player" @@ -12921,31 +12921,31 @@ msgstr "Player" msgid "Player dropped" msgstr "Player" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Cannot Build. Oil Resource Burning." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Damage %d%% - Experience %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Damage %d%% - Experience %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Truck ordered to build Oil Derrick" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Truck ordered to build Oil Derrick" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Truck ordered to build Oil Derrick" @@ -13066,13 +13066,13 @@ msgstr "TUTORIALS" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Return" @@ -13100,272 +13100,287 @@ msgstr "Load Game" msgid "SINGLE PLAYER" msgstr "SINGLE PLAYER" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Load Saved Game" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MULTIPLAYER" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Host Game" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Join Game" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPTIONS" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Game Options" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Graphics Options" -#: src/frontend.c:414 +#: src/frontend.c:423 #, fuzzy msgid "Video Options" msgstr "Audio Options" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Audio Options" -#: src/frontend.c:416 +#: src/frontend.c:425 #, fuzzy msgid "Mouse Options" msgstr "Game Options" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Key Mappings" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Video Playback" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Fullscreen" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Screen Shake" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "On" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Off" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Fog" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Mist" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Fog Of War" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Subtitles" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Shadows" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Voice Volume" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "FX Volume" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Music Volume" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Takes effect on game restart" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Graphics Mode*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Windowed" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Resolution*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Texture size" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 #, fuzzy msgid "Reverse Rotation" msgstr "Reverse Mouse" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Trap Cursor" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Game Options" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Rotate Left" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Difficulty" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Easy" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Hard" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Scroll Speed" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Language" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Unit Colour" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13486,7 +13501,7 @@ msgid "Exit Game" msgstr "Exit Game" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Progress Bar" @@ -13554,17 +13569,17 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Build Points" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 #, fuzzy msgid "Construction Progress" msgstr "Construction Unit" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Power Accrued" @@ -14409,8 +14424,8 @@ msgstr "Continue Game" msgid "GAME SAVED :" msgstr "GAME SAVED!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14726,17 +14741,17 @@ msgstr "Host is Starting Game" msgid "Players" msgstr "Players" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/es.po b/po/es.po index ae7397626..889743059 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2010-04-29 17:24+0100\n" "Last-Translator: Daniel Vijande \n" "Language-Team: Spanish \n" @@ -12444,8 +12444,8 @@ msgstr "Dominio" msgid "go directly to host screen" msgstr "Ir directamente a pantalla de dominio" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Jugador" @@ -12599,31 +12599,31 @@ msgstr "Jugador Salió" msgid "Player dropped" msgstr "Jugador Desconectado" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "No se puede construir. Yacimiento de petróleo ardiendo." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Daño %d%% - Experiencia %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s Aliado - Daño %d%% - Experiencia %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Camión enviado a construir Torre Petrolífera" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Camión enviado a construir Torre Petrolífera" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Camión enviado a construir Torre Petrolífera" @@ -12741,13 +12741,13 @@ msgstr "TUTORIALES" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Volver" @@ -12773,264 +12773,279 @@ msgstr "Cargar Partida" msgid "SINGLE PLAYER" msgstr "UN JUGADOR" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Cargar Partida Guardada" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MULTIJUGADOR" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Hospedar Partida" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Unirse a una Partida" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPCIONES" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Opciones de juego" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Opciones Gráficas" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Opciones de Vídeo" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Opciones de Audio" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Opciones de ratón" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Mapeos de teclas" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Reproducción de Vídeo" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Pantalla Completa" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Agitar pantalla" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Activado" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Desactivado" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Niebla" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Neblina" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Niebla de Guerra" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Subtítulos" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Sombras" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "OPCIONES GRÃFICAS" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volumen de Voces" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volumen de Sonidos" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volumen de Música" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "OPCIONES DE AUDIO" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Tendrá efecto al reiniciar el juego" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Modo Gráfico*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "En ventana" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Resolución*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Tamaño de las texturas" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Sincronización Vertical" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "OPCIONES DE VIDEO" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Puede afectar negativamente al rendimiento" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Invertir Rotación" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Capturar Cursor" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Cursores de colores" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Cambiar botones del ratón" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Girar a la Izquierda" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "OPCIONES DE RATÓN" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Dificultad" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Fácil" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Difícil" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Velocidad de desplazamiento" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Idioma" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Color de las unidades" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "OPCIONES DE JUEGO" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod:" @@ -13147,7 +13162,7 @@ msgid "Exit Game" msgstr "Salir del Juego" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Barra de progreso" @@ -13217,17 +13232,17 @@ msgstr "" "\n" "Warzone intentará cargar el la partida sin él." -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Puntos estructurales" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 #, fuzzy msgid "Construction Progress" msgstr "Unidad de Construcción" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Energía acumulada" @@ -14057,8 +14072,8 @@ msgstr "Continuar Partida" msgid "GAME SAVED :" msgstr "¡PARTIDA GUARDADA!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "Encontraste %u energía en un barril de petróleo" @@ -14364,17 +14379,17 @@ msgstr "Anfitrión Comenzando Partida" msgid "Players" msgstr "Jugadores" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "Enviando Mapa: %d%%" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Mapa: %d%% descargado" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "ANFITRIÓN" diff --git a/po/et_EE.po b/po/et_EE.po index 63e06fa28..5d3934f42 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2010-05-10 16:59+0200\n" "Last-Translator: erlando \n" "Language-Team: Estonian \n" @@ -12440,8 +12440,8 @@ msgstr "võõrustaja" msgid "go directly to host screen" msgstr "mine otse võõrustaja aknasse" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Mägija" @@ -12595,31 +12595,31 @@ msgstr "Mängija lahkus" msgid "Player dropped" msgstr "Mängija Väjavisatud" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "EI Saa Ehitada. Naftaresurss Põleb." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Kahju %d%% - Kogemus %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s -Liitlane - Kahju %d%% - Kogemus %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Veoautol kästi Naftapuurtorn ehitada" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Veoautol kästi Naftapuurtorn ehitada" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Veoautol kästi Naftapuurtorn ehitada" @@ -12737,13 +12737,13 @@ msgstr "ÕPETUSED" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Tagasi" @@ -12769,264 +12769,279 @@ msgstr "Laadi Mäng" msgid "SINGLE PLAYER" msgstr "ÃœKSIK MÄNG" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Laadi Salvestatud Mäng" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MITMIKMÄNG" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Võõrusta Mängu" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Liitu Mängu" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "SEADED" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Mängu Seaded" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Graafika Seaded" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Video Seaded" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Audio Seaded" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Hiire Seaded" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Nuppude Vasted" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Video Taasesitus" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Täisaken" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Ekraani Värin" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Sees" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Väljas" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Udu" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Udu" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Sõjaudu" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Suptiitrid" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Varjud" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "GRAAFIKA SEADED" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Hääle Volüüm" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "FX Volüüm" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Muusika Volüüm" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "HELI SEADED" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Võtab efekti kui mäng uuesti käivitatakse" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Graafika Mode*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Akendatud" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Resolution*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Tekstuuri suurus" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Vertical sync*" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "VIDEO SEADED" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* May negatively affect performance" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Tagasipööre" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Püüniskursor" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Värvilised Kursorid*" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Vahetatud Hiire Nupud" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Keera Vasakule" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "HIIRE SEADED" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Raskusaste" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Kerge" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normaalne" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Raske" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Kerimiskiirus" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Keel" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Ãœksuse Värv" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "MÄNGU SEADED" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod:" @@ -13143,7 +13158,7 @@ msgid "Exit Game" msgstr "Välju Mängust" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Progressi Riba" @@ -13210,17 +13225,17 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Ehitamispunktid" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 #, fuzzy msgid "Construction Progress" msgstr "Konstrueerimis Ãœksus" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Energia Kogunenud" @@ -14050,8 +14065,8 @@ msgstr "Jätka Mängu" msgid "GAME SAVED :" msgstr "MÄNG SALVESTATUD!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "Sa leidsid naftatünnist %u energiat" @@ -14357,17 +14372,17 @@ msgstr "Võõrustaja Alustab Mängu" msgid "Players" msgstr "Mängijad" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "Kaarti Saatmine: %d%%" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Kaart: %d%% allalaaditud" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "VÕÕRUSTJA" diff --git a/po/fi.po b/po/fi.po index 69b2079b7..87b7a2ff5 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-05-09 10:33+0000\n" "Last-Translator: Lartza \n" "Language-Team: Finnish \n" @@ -12445,8 +12445,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Pelaaja" @@ -12604,30 +12604,30 @@ msgstr "Pelaaja" msgid "Player dropped" msgstr "Pelaaja" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "" -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Vahinko %d%% - Kokemus %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Vahinko %d%% - Kokemus %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "" -#: src/display.c:2078 +#: src/display.c:2091 msgid "2 trucks ordered to build Oil Derrick" msgstr "" -#: src/display.c:2079 +#: src/display.c:2092 #, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "" @@ -12750,13 +12750,13 @@ msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Palaa" @@ -12782,271 +12782,285 @@ msgstr "Lataa peli" msgid "SINGLE PLAYER" msgstr "YKSINPELI" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Lataa tallennettu peli" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MONINPELI" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Liity peliin" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ASETUKSET" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Peliasetukset" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "" -#: src/frontend.c:414 +#: src/frontend.c:423 #, fuzzy msgid "Video Options" msgstr "Peliasetukset" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:416 +#: src/frontend.c:425 #, fuzzy msgid "Mouse Options" msgstr "Peliasetukset" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Kokoruutu" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Ruudn tärinä" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Päällä" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Pois päältä" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Sumu" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Tekstitykset" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Varjot" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Ikkunoitu" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Resoluutio*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Peliasetukset" -#: src/frontend.c:999 +#: src/frontend.c:1009 +msgid "Rotate Screen" +msgstr "" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Vaikeustaso" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Helppo" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Vaikea" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Vieritysnopeus" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Kieli" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13166,7 +13180,7 @@ msgid "Exit Game" msgstr "Poistu pelistä" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Edistymispalkki" @@ -13233,16 +13247,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Edistymispalkki" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "" @@ -14075,8 +14089,8 @@ msgstr "Jatka peliä" msgid "GAME SAVED :" msgstr "Peli tallennettu" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14388,17 +14402,17 @@ msgstr "" msgid "Players" msgstr "Pelaajat" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/fr.po b/po/fr.po index e6b571c5b..5afbb1fee 100644 --- a/po/fr.po +++ b/po/fr.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2010-04-21 08:32-0500\n" "Last-Translator: Gilles J. Séguin \n" "Language-Team: French \n" @@ -12546,8 +12546,8 @@ msgstr "hôte" msgid "go directly to host screen" msgstr "aller directement à l'écran de l'hôte" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Joueur" @@ -12701,31 +12701,31 @@ msgstr "Joueur à quitter" msgid "Player dropped" msgstr "Joueur échapper" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Construction Impossible. Le Gisement de Pétrole est en Feu." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Endommagé à %d%% - Expérience %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Allié - Endommagé à %d%% - Expérience %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Construction d'un Puits de Pétrole" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Construction d'un Puits de Pétrole" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Construction d'un Puits de Pétrole" @@ -12843,13 +12843,13 @@ msgstr "TUTORIAUX" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Menu précédent" @@ -12875,267 +12875,282 @@ msgstr "Charger une Partie" msgid "SINGLE PLAYER" msgstr "UN JOUEUR" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Charger une partie Enregistrée" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MULTI-JOUEURS" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Créer une Nouvelle Partie" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Joindre une Partie" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Options du Jeu" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Options Graphiques" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Options Vidéos" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Options Audio" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Options souris" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Raccourcis Clavier" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Affichage des Vidéos" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Plein Écran" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Tremblements de l'écran (explosion)" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Activé" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Désactivé" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Brouillard" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Brume" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Brouillard de guerre" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Sous-titres" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Ombres" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "OPTIONS GRAPHIQUES" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volume de la Voix" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volume des Bruits(FX)" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volume de la Musique" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "OPTIONS AUDIO" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Le jeu doit être redémarré pour que ces options s'appliquent" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Paramètres Visuels*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Fenêtré" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Résolution*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Taille des Textures" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Fréquence da rafraîchissement verticale*" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "OPTIONS VIDÉOS" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Risque de diminuer les performances" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Rotation Inversée" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Piéger le Curseur" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Curseur Coloré*" -#: src/frontend.c:988 +#: src/frontend.c:997 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Inverser les Boutons de la Souris" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Rotation vers la Gauche" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "OPTIONS SOURIS" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Difficulté" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Facile" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normale" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Difficile" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Vitesse de Défilement" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Langue" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Couleur des Unités" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "OPTIONS" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod: " @@ -13252,7 +13267,7 @@ msgid "Exit Game" msgstr "Quitter" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Barre de Progression" @@ -13323,17 +13338,17 @@ msgstr "" "\n" "Warzone va essayer de charger la partie sans lui." -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Points de construction" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 #, fuzzy msgid "Construction Progress" msgstr "Unité de Construction" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Puissance Accrue" @@ -14170,8 +14185,8 @@ msgstr "Continuer" msgid "GAME SAVED :" msgstr "PARTIE SAUVEGARDÉE!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, fuzzy, c-format msgid "You found %u power in an oil drum." msgstr "Vous avez trouvé %u unités d'énergie dans un baril de pétrole" @@ -14480,17 +14495,17 @@ msgstr "L'hôte démarre la partie" msgid "Players" msgstr "Joueurs" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "Carte envoyé: %d%% " -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Carte: %d%% téléchargé" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "HOTE" diff --git a/po/fy.po b/po/fy.po index ebc981920..f3fceb3fd 100644 --- a/po/fy.po +++ b/po/fy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-04-21 08:59+0000\n" "Last-Translator: Wander Nauta \n" "Language-Team: Frisian \n" @@ -12441,8 +12441,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Spiler" @@ -12598,31 +12598,31 @@ msgstr "Spiler" msgid "Player dropped" msgstr "Spiler" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Kin net bouwe. Oaljebron is oan it brânen." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Skea %d%% - Erfaring %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Skea %d%% - Erfaring %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Frachtauto kommandeare omt in Oaljepunt te bouwen" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Frachtauto kommandeare omt in Oaljepunt te bouwen" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Frachtauto kommandeare omt in Oaljepunt te bouwen" @@ -12742,13 +12742,13 @@ msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "" @@ -12775,268 +12775,282 @@ msgstr "" msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Opslein Spul Lade" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Dize" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Kriigsdize" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:999 +#: src/frontend.c:1009 +msgid "Rotate Screen" +msgstr "" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13156,7 +13170,7 @@ msgid "Exit Game" msgstr "Spul ferlitte" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Foartgongsbalke" @@ -13224,16 +13238,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Foartgongsbalke" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Krêft tanommen" @@ -14071,8 +14085,8 @@ msgstr "Fjirder Mei Spul" msgid "GAME SAVED :" msgstr "SPUL OPSLEIN!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14385,17 +14399,17 @@ msgstr "Tsjinner is spul oan it starten" msgid "Players" msgstr "Spilers" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/ga.po b/po/ga.po index e142a37d4..facbb9137 100644 --- a/po/ga.po +++ b/po/ga.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-05-08 17:14+0000\n" "Last-Translator: Seanan \n" "Language-Team: Irish \n" @@ -12441,8 +12441,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Imreoir" @@ -12598,30 +12598,30 @@ msgstr "Imreoir" msgid "Player dropped" msgstr "Imreoir" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "" -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Dochar %d%% - Taithí %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Dochar %d%% - Taithí %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "" -#: src/display.c:2078 +#: src/display.c:2091 msgid "2 trucks ordered to build Oil Derrick" msgstr "" -#: src/display.c:2079 +#: src/display.c:2092 #, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "" @@ -12741,13 +12741,13 @@ msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "" @@ -12774,268 +12774,282 @@ msgstr "" msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Ceo" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:999 +#: src/frontend.c:1009 +msgid "Rotate Screen" +msgstr "" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13152,7 +13166,7 @@ msgid "Exit Game" msgstr "Scoir ón Cluiche" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Barra Dul Chun Cinn" @@ -13220,16 +13234,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Barra Dul Chun Cinn" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "" @@ -14060,8 +14074,8 @@ msgstr "Lean Leis an Cluiche" msgid "GAME SAVED :" msgstr "" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14371,17 +14385,17 @@ msgstr "" msgid "Players" msgstr "Imreoirí" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/hr.po b/po/hr.po index 6d63f7ca4..efbfcfb78 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: WZ2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: \n" "Last-Translator: metalwarrior95 \n" "Language-Team: \n" @@ -12451,8 +12451,8 @@ msgstr "host" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "IgraÄ" @@ -12606,31 +12606,31 @@ msgstr "IgraÄ otiÅ¡ao" msgid "Player dropped" msgstr "IgraÄ Pao" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "NedopuÅ¡teno GraÄ‘enje. Izvor Nafte Gori!" -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Kamionu nareÄ‘eno da sagradi pumpu za naftu" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Kamionu nareÄ‘eno da sagradi pumpu za naftu" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Kamionu nareÄ‘eno da sagradi pumpu za naftu" @@ -12748,13 +12748,13 @@ msgstr "Vježbe" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Natrag" @@ -12780,264 +12780,279 @@ msgstr "UÄitaj Igru" msgid "SINGLE PLAYER" msgstr "JEDAN IGRAÄŒ" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "UÄitaj SaÄuvanu Igru" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "VIÅ E IGRAÄŒA" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Napravi Igru" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Pridruži se Igri" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "POSTAVKE" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Opcije Igre" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "GrafiÄke opcije" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Video opcije" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Audio opcije" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Opcije miÅ¡a" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Video reprodukcija" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Puni Ekran" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Drmati Zaslon" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "UkljuÄeno" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "IskljuÄeno" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Magla" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Misterija" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Magla Rata" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Titlovi" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Sjene" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "OPCIJE SLIKE" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Glasovna jaÄina" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "FX jaÄina" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "JaÄina glazbe" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "OPCIJE ZVUKA" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Radi tek nakon ponovnog pokretanja igre" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "GrafiÄki naÄin" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "U prozoru" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Rezolucija*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "VeliÄina tekstura*" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Verikarno osvježivanje*" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "OPCIJE VIDEA" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Može negativno utjecati na performanse" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Obrni rotaciju" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Zarobi Kursor" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Obojeni Kursori*" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Zamjeni Tipke MiÅ¡a" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Zakreni u lijevo" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "OPCIJE MIÅ A" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Težina" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Lagano" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Srednje" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "TeÅ¡ko" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Brzina " -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Jezik" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Boja" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "OPCIJE IGRE" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Modifikacija:" @@ -13154,7 +13169,7 @@ msgid "Exit Game" msgstr "IzaÄ‘i iz igre" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Procesna trakica" @@ -13221,16 +13236,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Bodovi za Gradnju" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "Proces gradnje" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Dobiveni resursi" @@ -14060,8 +14075,8 @@ msgstr "Nastavi igru" msgid "GAME SAVED :" msgstr "Igra spremljena:" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "NaÅ¡ao si %u resursa u baÄvi." @@ -14367,17 +14382,17 @@ msgstr "Host zapoÄinje igru" msgid "Players" msgstr "IgraÄi" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "Slanje karte: %d%%" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Karta: %d%% downloadana" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "HOST" diff --git a/po/it.po b/po/it.po index c133bb94a..211323b4f 100644 --- a/po/it.po +++ b/po/it.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2010-05-05 12:19+0100\n" "Last-Translator: Cristian Odorico \n" "Language-Team: Italian \n" @@ -12444,8 +12444,8 @@ msgstr "Ospita" msgid "go directly to host screen" msgstr "Vai direttamente alla schermata host" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Giocatore" @@ -12599,30 +12599,30 @@ msgstr "Un giocatore ha lasciato la partita" msgid "Player dropped" msgstr "Giocatore" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Impossibile costruire. Risorsa d'olio in fiamme." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Danno %d%% - Esperienza %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Alleato - Danno %d%% - Esperienza %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Camion incaricato di costruire un Traliccio Petrolifero" -#: src/display.c:2078 +#: src/display.c:2091 msgid "2 trucks ordered to build Oil Derrick" msgstr "2 camion incaricati di costruire un Traliccio Petrolifero" -#: src/display.c:2079 +#: src/display.c:2092 #, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "%d camion incaricati di costruire un Traliccio Petrolifero" @@ -12740,13 +12740,13 @@ msgstr "TUTORIAL" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Indietro" @@ -12772,264 +12772,279 @@ msgstr "Carica Partita" msgid "SINGLE PLAYER" msgstr "GIOCATORE SINGOLO" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Carica Partita" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MULTIGIOCATORE" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Ospita una partita" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Unisciti a una partita" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPZIONI" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Opzioni di Gioco" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Opzioni Grafiche" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Opzioni video." -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Opzioni Audio" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Opzioni del mouse" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Assegnazione dei Tasti" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Riproduzione dei Video" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "A schermo pieno" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Scuoti lo Schermo" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "On" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Off" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Nebbia" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Nebbia" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Nebbia di Guerra" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Sottotitoli" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Ombre" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "OPZIONI GRAFICHE" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volume Voce" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volume effetti" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volume musica" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "OPZIONI AUDIO" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Ha effetto al riavvio del gioco" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Modalità Grafica*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "A finestra" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Risoluzione*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Dimensione della Texture" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Sincronia verticale" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "OPZIONI VIDEO" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Può avere effetti negativi sulla performance" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Inverti la rotazione" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Blocca il Cursore" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Cursori colorati*" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Inverti i tasti del mouse" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Ruota a Sinistra" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "OPZIONI DEL MOUSE" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Difficoltà" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Facile" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normale" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Difficile" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Velocità di Scorrimento" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Lingua" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Colore delle Unità" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "OPZIONI DI GIOCO" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod:" @@ -13145,7 +13160,7 @@ msgid "Exit Game" msgstr "Esci dal Gioco" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Barra del Progresso" @@ -13215,15 +13230,15 @@ msgstr "" "\n" "Warzone proverà a caricare il gioco senza di esso." -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 msgid "Build Progress" msgstr "Progresso della produzione" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "Progresso della costruzione" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Energia Accumulata" @@ -14053,8 +14068,8 @@ msgstr "Continua la Partita" msgid "GAME SAVED :" msgstr "PARTITA SALVATA!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "Hai trovato %u di energia in un barile di petrolio" @@ -14360,17 +14375,17 @@ msgstr "L'host sta avviando la partita" msgid "Players" msgstr "Giocatori" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "Invio mappa: %d%%" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Mappa: %d%% scaricata" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "HOST" diff --git a/po/la.po b/po/la.po index 2a192ab0e..cf2a04f4c 100644 --- a/po/la.po +++ b/po/la.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-05-09 16:39+0000\n" "Last-Translator: Giel van Schijndel \n" "Language-Team: Latin\n" @@ -12470,8 +12470,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "" @@ -12625,30 +12625,30 @@ msgstr "" msgid "Player dropped" msgstr "" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "" -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "" -#: src/display.c:2078 +#: src/display.c:2091 msgid "2 trucks ordered to build Oil Derrick" msgstr "" -#: src/display.c:2079 +#: src/display.c:2092 #, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "" @@ -12769,13 +12769,13 @@ msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "" @@ -12801,264 +12801,278 @@ msgstr "" msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:999 +#: src/frontend.c:1009 +msgid "Rotate Screen" +msgstr "" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13178,7 +13192,7 @@ msgid "Exit Game" msgstr "" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "" @@ -13245,15 +13259,15 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 msgid "Build Progress" msgstr "" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 #, fuzzy msgid "Power Accrued" msgstr "Vigor AdquirÄvi" @@ -14088,8 +14102,8 @@ msgstr "" msgid "GAME SAVED :" msgstr "" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14395,17 +14409,17 @@ msgstr "" msgid "Players" msgstr "" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/lt.po b/po/lt.po index ed31c1a6d..a276f6ad5 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-05-09 16:42+0000\n" "Last-Translator: Roman \n" "Language-Team: Lithuanian \n" @@ -12440,8 +12440,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "ŽaidÄ—jas" @@ -12597,31 +12597,31 @@ msgstr "ŽaidÄ—jas" msgid "Player dropped" msgstr "ŽaidÄ—jas" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Negalima statyti. Naftos telkinys dega." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Žala %d%% - Patirtis %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Žala %d%% - Patirtis %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Sunkvežimiui įsakyta sukonstruoti naftos platformÄ…" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Sunkvežimiui įsakyta sukonstruoti naftos platformÄ…" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Sunkvežimiui įsakyta sukonstruoti naftos platformÄ…" @@ -12743,13 +12743,13 @@ msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "" @@ -12775,264 +12775,278 @@ msgstr "" msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Pakrauti iÅ¡saugotÄ… žaidimÄ…" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:999 +#: src/frontend.c:1009 +msgid "Rotate Screen" +msgstr "" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13151,7 +13165,7 @@ msgid "Exit Game" msgstr "IÅ¡eiti iÅ¡ žaidimo" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Eigos juosta" @@ -13219,16 +13233,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Eigos juosta" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "" @@ -14062,8 +14076,8 @@ msgstr "TÄ™sti žaidimÄ…" msgid "GAME SAVED :" msgstr "Žaidimas iÅ¡saugotas" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14373,17 +14387,17 @@ msgstr "" msgid "Players" msgstr "" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/nb.po b/po/nb.po index e95b2854f..e5b58d223 100644 --- a/po/nb.po +++ b/po/nb.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-05-09 16:54+0000\n" "Last-Translator: Olav Andreas Lindekleiv \n" "Language-Team: none\n" @@ -12475,8 +12475,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Spiller" @@ -12632,30 +12632,30 @@ msgstr "Spiller" msgid "Player dropped" msgstr "Spiller" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Kan ikke bygge her. Oljeressurs brenner." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "" -#: src/display.c:2078 +#: src/display.c:2091 msgid "2 trucks ordered to build Oil Derrick" msgstr "" -#: src/display.c:2079 +#: src/display.c:2092 #, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "" @@ -12775,13 +12775,13 @@ msgstr "INTRODUKSJON" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "" @@ -12808,272 +12808,286 @@ msgstr "Last Spill" msgid "SINGLE PLAYER" msgstr "SOLOSPILL" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Last inn spill" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "SAMSPILL" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Bli med i spill" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ALTERNATIVER" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Spillalternativer" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Grafikkalternativer" -#: src/frontend.c:414 +#: src/frontend.c:423 #, fuzzy msgid "Video Options" msgstr "Lydalternativer" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Lydalternativer" -#: src/frontend.c:416 +#: src/frontend.c:425 #, fuzzy msgid "Mouse Options" msgstr "Spillalternativer" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "PÃ¥" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Av" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "TÃ¥ke" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "KrigstÃ¥ke" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Stemmevolum" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Lydeffektvolum" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Musikkvolum" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:759 +#: src/frontend.c:768 #, fuzzy msgid "Graphics Mode*" msgstr "Grafikkalternativer" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Spillalternativer" -#: src/frontend.c:999 +#: src/frontend.c:1009 +msgid "Rotate Screen" +msgstr "" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Vanskelighetsgrad" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Enkel" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Tøff" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13200,7 +13214,7 @@ msgid "Exit Game" msgstr "Avslutt Spill" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Framdriftslinje" @@ -13269,16 +13283,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Framdriftslinje" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "" @@ -14116,8 +14130,8 @@ msgstr "Fortsett spill" msgid "GAME SAVED :" msgstr "SPILL LAGRET!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14432,17 +14446,17 @@ msgstr "Vert starter spill" msgid "Players" msgstr "Spillere" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/nl.po b/po/nl.po index 101d817c7..2f729a7a0 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2009-10-31 12:10+0100\n" "Last-Translator: \n" "Language-Team: Dutch \n" @@ -12649,8 +12649,8 @@ msgstr "gastheer" msgid "go directly to host screen" msgstr "Ga direct naar het gastheer scherm" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Speler" @@ -12804,31 +12804,31 @@ msgstr "Speler verliet het spel" msgid "Player dropped" msgstr "Speler gevallen" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Kan niet bouwen. De oliebron staat in brand." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Schade %d%% - Ervaring %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Schade %d%% - Ervaring %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Vrachtwagen bevel gegeven om jaknikker te bouwen." -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Vrachtwagen bevel gegeven om jaknikker te bouwen." -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Vrachtwagen bevel gegeven om jaknikker te bouwen." @@ -12946,13 +12946,13 @@ msgstr "OEFENPOTJES" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Terug" @@ -12978,270 +12978,285 @@ msgstr "Spel laden" msgid "SINGLE PLAYER" msgstr "EEN SPELER" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Opgeslagen spel laden" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MEERDERE SPELERS" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Spel verzorgen" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Deelnemen aan spel" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPTIES" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Spelinstellingen" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Beeldinstellingen" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Video-instellingen" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Geluidsinstellingen" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Muisinstellingen" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Sneltoetsen" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Video afspelen" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1x" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2x" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Volledig scherm" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Scherm schudden" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Aan" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Uit" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Mist" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Nevel" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Oorlogsmist" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Ondertitels" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Schaduwen" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Stemvolume" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Effectenvolume" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Muziekvolume" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Gaat in na herstart" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Grafische modus*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Venster" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Resolutie*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Structuurgrootte" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Verticale synchr*" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 #, fuzzy msgid "Reverse Rotation" msgstr "Draai knoppen om" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Cursor opsluiten" -#: src/frontend.c:975 +#: src/frontend.c:984 #, fuzzy msgid "Colored Cursors*" msgstr "Gekleurde Muis wijzer *" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Verwissel Muis Knoppen" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Draai naar links" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Moeilijkheidsgraad" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Makkelijk" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normaal" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Moeilijk" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Scrollsnelheid" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Taal" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Speelkleur" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13358,7 +13373,7 @@ msgid "Exit Game" msgstr "Spel verlaten" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Voortgangsbalk" @@ -13426,17 +13441,17 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "Bouw-punten" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 #, fuzzy msgid "Construction Progress" msgstr "Constructie Eenheid" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Energie toegenomen" @@ -14273,8 +14288,8 @@ msgstr "Spel vervolgen" msgid "GAME SAVED :" msgstr "SPEL OPGESLAGEN!" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, fuzzy, c-format msgid "You found %u power in an oil drum." msgstr "jij hebt %u energie gevonden in een olie ton" @@ -14590,17 +14605,17 @@ msgstr "Gastheer start spel" msgid "Players" msgstr "Spelers" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/pl.po b/po/pl.po index e5f83e06e..34e4db111 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2010-05-28 10:43+0100\n" "Last-Translator: MichaÅ‚ D. aka Emdek \n" "Language-Team: Polish \n" @@ -12454,8 +12454,8 @@ msgstr "host" msgid "go directly to host screen" msgstr "Idź od razu na ekran hosta" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Gracz" @@ -12609,31 +12609,31 @@ msgstr "Gracz opuÅ›ciÅ‚ grÄ™" msgid "Player dropped" msgstr "Gracz odrzucony" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Nie można budować. PÅ‚onie ropa." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Obrażenia %d%% - DoÅ›wiadczenie %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Sojusznik - Obrażenia %d%% - DoÅ›wiadczenie %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Rozkazano budowniczemu zbudować RafineriÄ™" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Rozkazano budowniczemu zbudować RafineriÄ™" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Rozkazano budowniczemu zbudować RafineriÄ™" @@ -12756,13 +12756,13 @@ msgstr "SZKOLENIA" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Powrót" @@ -12788,265 +12788,280 @@ msgstr "ZaÅ‚aduj grÄ™" msgid "SINGLE PLAYER" msgstr "JEDEN GRACZ" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "ZaÅ‚aduj zapisany stan gry" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "WIELU GRACZY" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Utwórz grÄ™" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "DoÅ‚Ä…cz do gry" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPCJE" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Ustawienia gry" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Opcje grafiki" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Ustawienia obrazu" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Ustawienia dźwiÄ™ku" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Ustawienia myszki" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Skróty klawiszowe" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Odtwarzanie filmów" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "PeÅ‚ny ekran" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "WstrzÄ…sy ekranu" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "WÅ‚Ä…cz" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "WyÅ‚Ä…cz" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "MgÅ‚a" # 'Mist' and 'Fog' has the same meaning in Polish -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "MgÅ‚a" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "MgÅ‚a wojny" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Napisy" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Cienie" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "USTAWIENIA GRAFIKI" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "GÅ‚oÅ›ność mowy" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "GÅ‚oÅ›ność efektów" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "GÅ‚oÅ›ność muzyki" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "USTAWIENIA DŹWIĘKU" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Wymaga restartu gry" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Tryb graficzny*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "W oknie" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Rozdzielczość*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Rozmiar tekstury" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Synchron. pionowa*" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "USTAWIENIA WIDEO" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Może zmniejszyć wydajność" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Odwróć rotacjÄ™" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "ZÅ‚ap kursor" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Kolorowe kursory*" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Odwróć przyciski" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Obrót w lewo" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "USTAWIENIA MYSZKI" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Poziom trudnoÅ›ci" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Åatwy" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normalny" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Trudny" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Szybkość przewijania" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "JÄ™zyk" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Kolor jednostek" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "USTAWIENIA GRY" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod: " @@ -13163,7 +13178,7 @@ msgid "Exit Game" msgstr "ZakoÅ„cz grÄ™" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Pasek postÄ™pu" @@ -13233,17 +13248,17 @@ msgstr "" "\n" "Warzone spróbuje zaÅ‚adować grÄ™ bez niego." -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "PrÄ™dkość budowania" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 #, fuzzy msgid "Construction Progress" msgstr "Jednostka budujÄ…ca" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Moc zwiÄ™kszona" @@ -14073,8 +14088,8 @@ msgstr "Kontynuuj grÄ™" msgid "GAME SAVED :" msgstr "GRA ZAPISANA :" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "ZnalazÅ‚eÅ› %u energii w beczce z ropÄ…." @@ -14380,17 +14395,17 @@ msgstr "Host rozpoczyna grÄ™" msgid "Players" msgstr "Gracze" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "PrzesyÅ‚anie mapy: %d%%" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Mapa: %d%% pobrane" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "HOST" diff --git a/po/pt.po b/po/pt.po index f0c7b26f4..ce289ad7c 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2009-08-04 22:59+0100\n" "Last-Translator: Pedro Miguel Martins da Silva Caetano \n" "Language-Team: Portugese \n" @@ -12590,8 +12590,8 @@ msgstr "Anfitrião" msgid "go directly to host screen" msgstr "ir directamente para o ecrã de anfitrião" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Jogador" @@ -12746,31 +12746,31 @@ msgstr "Jogador Saiu" msgid "Player dropped" msgstr "Jogador caiu" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Impossível construir. Fonte de petróleo a arder." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Dano %d%% - Experiência %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Dano %d%% - Experiência %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Camião ordenado a construir Extractor de Petróleo" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Camião ordenado a construir Extractor de Petróleo" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Camião ordenado a construir Extractor de Petróleo" @@ -12888,13 +12888,13 @@ msgstr "TUTORIAIS" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Anterior" @@ -12921,269 +12921,284 @@ msgstr "Carregar Jogo" msgid "SINGLE PLAYER" msgstr "UM JOGADOR" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Carregar Jogo Gravado" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MULTIJOGADOR" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Criar Server" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Juntar-se a Jogo" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPÇÕES" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Opções de Jogo" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Opções de Gráficos" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Opções de Vídeo" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Opções de Ãudio" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Opções de Rato" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Definir teclas" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Playback do Vídeo" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Ecrã Inteiro" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Abanar Ecrã" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Ligado" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Desligado" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Nevoeiro" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Nevoeiro" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Nevoeiro de guerra" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Legendas" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Sombras" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volume de Voz" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volume dos Efeitos" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volume da Música" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Tem efeito quando o jogo for reiniciado" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Modo de Gráficos" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Em Janela" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Resolução" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Tamanho das Texturas" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Vertical sync*" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Pode afectar negativamente a performance" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Rotação Invertida" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Restringir Cursor" -#: src/frontend.c:975 +#: src/frontend.c:984 #, fuzzy msgid "Colored Cursors*" msgstr "Cursores Coloridos *" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Trocar Botões do Rato" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Inclinar para trás" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Dificuldade" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Fácil" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Difícil" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Velocidade de Scroll" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Língua" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Cor das Unidades" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13300,7 +13315,7 @@ msgid "Exit Game" msgstr "Sair do Jogo" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Barra de Progresso" @@ -13368,15 +13383,15 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 msgid "Build Progress" msgstr "Progresso de Construção" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "Progresso de Construção" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Energia resultante" @@ -14212,8 +14227,8 @@ msgstr "Continuar Jogo" msgid "GAME SAVED :" msgstr "JOGO GRAVADO :" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "Encontraste %u energia num barril de petróleo" @@ -14526,17 +14541,17 @@ msgstr "O servidor está a começar o jogo" msgid "Players" msgstr "Jogadores" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 5127723c5..c1e7b013d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2010-05-08 00:46-0300\n" "Last-Translator: Artur Filipe \n" "Language-Team: Brazilian Portugese \n" @@ -12433,8 +12433,8 @@ msgstr "hospedeiro" msgid "go directly to host screen" msgstr "ir diretamente à tela de hospedeiro" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Jogador" @@ -12588,30 +12588,30 @@ msgstr "Jogador saiu" msgid "Player dropped" msgstr "Jogador desconectou-se" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Não pode construir. Recursos petrolíferos queimados." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Danos %d%% - Experiência %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Aliado - Danos %d%% - Experiência %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "O Caminhão ordenou a construção Oil Derrick" -#: src/display.c:2078 +#: src/display.c:2091 msgid "2 trucks ordered to build Oil Derrick" msgstr "2 caminhões designados para a construção do Extrator de Petróleo" -#: src/display.c:2079 +#: src/display.c:2092 #, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "%d caminhões designados para a construção do Extrator de Petróleo" @@ -12729,13 +12729,13 @@ msgstr "APRENDENDO A JOGAR" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Voltar" @@ -12761,264 +12761,279 @@ msgstr "Carregar Jogo" msgid "SINGLE PLAYER" msgstr "UM JOGADOR" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Carregar Jogo Salvo" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MULTIPLAYER" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Hospedar Jogo" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Conectar-se a um jogo" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPÇÕES" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Opções de Jogo" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Opções de Vídeo" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Opções de Vídeo" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Opções de Ãudio" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Opções de Mouse" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Configuração das Teclas" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Tamanho de Vídeo" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Tela Cheia" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Tremer a Tela" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Ligado" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Desligado" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Nevoeiro" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Misto" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Nevoeiro da Guerra" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Legendas" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Sombras" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "OPÇÕES DE GRÃFICOS" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volume da Voz" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volume dos Sons" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volume da Música" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "OPÇÕES DE ÃUDIO" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Precisa reiniciar o jogo" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Modo Gráfico*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Em Janela" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Resolução*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Tamanho da Textura" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "V-Sync*" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "OPÇÕES DE VÃDEO" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Pode afetar a performance" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Reverter Rotação" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Travar Cursor" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Cursores Coloridos *" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "Inverter Botões do Mouse" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Girar a visão para a esquerda" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "OPÇÕES DE MOUSE" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Dificuldade" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Fácil" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Média" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Difícil" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Velocidade da Tela" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Idioma" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Cor das Unidades" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod:" @@ -13134,7 +13149,7 @@ msgid "Exit Game" msgstr "Sair do Jogo" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Barra de Progresso" @@ -13204,15 +13219,15 @@ msgstr "" "\n" "Warzone tentará carregar o jogo sem ele." -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 msgid "Build Progress" msgstr "Progresso da Construção" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "Progresso da Construção" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Energia Coletada" @@ -14042,8 +14057,8 @@ msgstr "Continuar o Jogo" msgid "GAME SAVED :" msgstr "JOGO SALVO :" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "Você encontrou %u de energia de um tambor de petróleo." @@ -14349,17 +14364,17 @@ msgstr "O Host iniciou o Jogo" msgid "Players" msgstr "Jogadores" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "Enviando mapa: %d%%" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Mapa: %d%% baixado" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "HOSPEDEIRO" diff --git a/po/ro.po b/po/ro.po index 50f37a604..cb50195ed 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2008-04-30 20:40+0000\n" "Last-Translator: Bogdan Ivanov \n" "Language-Team: Romanian \n" @@ -12437,8 +12437,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Jucător" @@ -12594,31 +12594,31 @@ msgstr "Jucător" msgid "Player dropped" msgstr "Jucător" -#: src/display.c:1679 +#: src/display.c:1692 #, fuzzy msgid "Cannot Build. Oil Resource Burning." msgstr "Nu pot construi. Resursa de petrol arde." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "" -#: src/display.c:2078 +#: src/display.c:2091 msgid "2 trucks ordered to build Oil Derrick" msgstr "" -#: src/display.c:2079 +#: src/display.c:2092 #, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "" @@ -12738,13 +12738,13 @@ msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "" @@ -12770,264 +12770,278 @@ msgstr "" msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:999 +#: src/frontend.c:1009 +msgid "Rotate Screen" +msgstr "" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13144,7 +13158,7 @@ msgid "Exit Game" msgstr "" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "" @@ -13212,15 +13226,15 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 msgid "Build Progress" msgstr "" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "" @@ -14050,8 +14064,8 @@ msgstr "" msgid "GAME SAVED :" msgstr "" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14361,17 +14375,17 @@ msgstr "" msgid "Players" msgstr "" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/ru.po b/po/ru.po index 906b9b0cb..a60588ed6 100644 --- a/po/ru.po +++ b/po/ru.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2010-06-10 02:04+0300\n" "Last-Translator: Filipp Chertiev \n" "Language-Team: Russian <>\n" @@ -12449,8 +12449,8 @@ msgstr "ХоÑÑ‚" msgid "go directly to host screen" msgstr "прÑмо на Ñкран хоÑта" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Игрок" @@ -12604,31 +12604,31 @@ msgstr "Игрок ушел" msgid "Player dropped" msgstr "Игрок иÑчез" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "СтроительÑтво невозможно. Горит нефть." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - повреждение %d%% - опыт %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Ñоюзник %d%% - опыт %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Грузовику приказано Ñтроить нефтевышку" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Грузовику приказано Ñтроить нефтевышку" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Грузовику приказано Ñтроить нефтевышку" @@ -12750,13 +12750,13 @@ msgstr "ОБУЧЕÐИЕ" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Ðазад" @@ -12782,264 +12782,279 @@ msgstr "Загрузить игру" msgid "SINGLE PLAYER" msgstr "ОДИÐОЧÐÐЯ ИГРÐ" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Загрузить Игру" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "МУЛЬТИПЛЕЕР" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Создать игру" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "ПриÑоединитьÑÑ" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ПÐРÐМЕТРЫ" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "ÐаÑтройки игры" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "ÐаÑтройки графики" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "ÐаÑтройки видео" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "ÐаÑтройки звука" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "ÐаÑтройки Мыши" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "РаÑÑкладка клавиатуры" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "ВоÑпроизведение видео" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1Ð¥" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Полный Ñкран" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Дрожание Ñкрана" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Вкл." -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Выкл." -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Туман" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Мгла" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Туман войны" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Субтитры" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Тени" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "ÐаÑтройки графики" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "ГромкоÑÑ‚ÑŒ голоÑа" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "ГромкоÑÑ‚ÑŒ Ñффектов" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "ГромкоÑÑ‚ÑŒ музыкы" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "ÐаÑтройки аудио" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* ПрименитÑÑ Ð¿Ð¾Ñле перезагрузки игры" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "ГрафичеÑкий режим*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Ð’ окне" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Разрешение*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Размер текÑтур" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Ð’ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»ÑŒÐ½Ð°Ñ ÑинхронизациÑ*" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "ÐаÑтройки видео" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Может Ñнизить производительноÑÑ‚ÑŒ" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "ИнверÑÐ¸Ñ Ð¼Ñ‹ÑˆÐ¸" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Захват курÑора" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Цветные курÑоры *" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "ÐаÑтройки Мыши" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Повернуть влево" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "ÐаÑтройки мыши" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "СложноÑÑ‚ÑŒ" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "ЛегкаÑ" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "ÐормальнаÑ" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "ТÑжелаÑ" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "СкороÑÑ‚ÑŒ прокрутки" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Язык" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Цвет юнита" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "ÐÐСТРОЙКИ ИГРЫ" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "Мод:" @@ -13156,7 +13171,7 @@ msgid "Exit Game" msgstr "Выйти из игры" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Панель прогреÑÑа" @@ -13226,15 +13241,15 @@ msgstr "" "\n" "Warzone попробует запуÑтить игру без него. МолитеÑÑŒ!" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 msgid "Build Progress" msgstr "прогреÑÑ Ð¿Ð¾Ñтройки" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "ПрогреÑÑ ÑтроительÑтва" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "ÐÐ°ÐºÐ¾Ð¿Ð»ÐµÐ½Ð½Ð°Ñ ÑнергиÑ" @@ -14064,8 +14079,8 @@ msgstr "Продолжить игру" msgid "GAME SAVED :" msgstr "ИГРРСОХРÐÐЕÐÐ:" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "Ты нашел %u Ñнергии в бочке Ñ Ð³Ð¾Ñ€ÑŽÑ‡Ð¸Ð¼." @@ -14371,17 +14386,17 @@ msgstr "ХоÑÑ‚ Ñтартует" msgid "Players" msgstr "Игроки" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "Отправка карты: %d%%" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "карта: %d%% загружена" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "ХОСТ" diff --git a/po/sl.po b/po/sl.po index b4914979e..e9b7a549b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2009-06-10 14:43+0100\n" "Last-Translator: Tomaž PovÅ¡in \n" "Language-Team: Slovenian \n" @@ -12577,8 +12577,8 @@ msgstr "gostitelj" msgid "go directly to host screen" msgstr "pojdi naravnost na gostiteljev zaslon" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Igralec" @@ -12732,31 +12732,31 @@ msgstr "Igralec odÅ¡el" msgid "Player dropped" msgstr "Igralec izpadel" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Gradnja ni možna. Vir nafte gori." -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - PoÅ¡kodbe %d%% - IzkuÅ¡enj %d %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - PoÅ¡kodbe %d%% - IzkuÅ¡enj %d %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Tovornjaku ukazana gradnja naftne vrtine" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Tovornjaku ukazana gradnja naftne vrtine" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Tovornjaku ukazana gradnja naftne vrtine" @@ -12882,13 +12882,13 @@ msgstr "UÄŒNE VAJE" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "Nazaj" @@ -12915,270 +12915,285 @@ msgstr "Naloži igro" msgid "SINGLE PLAYER" msgstr "EN IGRALEC" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Naloži shranjeno igro" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "VEÄŒ IGRALCEV" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Gostite igro" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "Pridružite se igri" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "MOŽNOSTI" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Možnosti igre" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "GrafiÄne možnosti" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Video možnosti" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "ZvoÄne možnosti" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Možnosti miÅ¡ke" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "Vnosi tipk" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "Igranje posnetkov" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Cel zaslon" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "Tresenje zaslona" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Vklopljeno" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Izklopljeno" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Megla" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Meglica" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Megla vojne" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Podnapisi" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Sence" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Glasovi" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "UÄinki" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Glasba" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* ZaÄne delovati po ponovnem zagonu" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "GrafiÄni naÄin*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Okensko" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "LoÄljivost*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Velikost tekstur" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Vertkalna sinh*" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 #, fuzzy msgid "Reverse Rotation" msgstr "Obrnjena miÅ¡ka" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "Ujemi kazalec" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Možnosti miÅ¡ke" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Zavrti levo" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "Težavnost" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Lahka" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "ObiÄajna" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Težka" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "Hitrost pomikanja" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Jezik" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Barva enot" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13295,7 +13310,7 @@ msgid "Exit Game" msgstr "Zapusti igro" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "ÄŒrta napredka" @@ -13363,15 +13378,15 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 msgid "Build Progress" msgstr "Potek gradnje" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "Potek izdelave" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "MoÄ poveÄana" @@ -14205,8 +14220,8 @@ msgstr "Nadaljuj igro" msgid "GAME SAVED :" msgstr "IGRA SHRANJENA:" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "NaÅ¡li ste %u moÄi v sodu nafte" @@ -14521,17 +14536,17 @@ msgstr "Gostitelj zaÄenja igro" msgid "Players" msgstr "Igralci" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/uk_UA.po b/po/uk_UA.po index db42ef892..4c4403423 100644 --- a/po/uk_UA.po +++ b/po/uk_UA.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Warzone 2100 version 2.2.3\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: \n" "Last-Translator: Меденцій ОлекÑандр \n" "Language-Team: \n" @@ -12458,8 +12458,8 @@ msgstr "хоÑÑ‚" msgid "go directly to host screen" msgstr "перейти безпоÑередньо до екрану хоÑту" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "Гравець" @@ -12613,31 +12613,31 @@ msgstr "Гравець вийшов" msgid "Player dropped" msgstr "Гравець здавÑÑ" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "Будівництво Ðеможливе. Через пожежу на Ðафтовому Родовищі" -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - Пошкоджень %d%% - Вбито %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - Союзник - Пошкоджень %d%% - Вбито %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "Інженеру наказано побудувати Бурову Вежу" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "Інженеру наказано побудувати Бурову Вежу" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "Інженеру наказано побудувати Бурову Вежу" @@ -12755,13 +12755,13 @@ msgstr "ÐÐВЧÐÐÐЯ" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "ПовернутиÑÑŒ" @@ -12787,264 +12787,279 @@ msgstr "Завнтажити Гру" msgid "SINGLE PLAYER" msgstr "РЕЖИМ ОДÐОГО ГРÐВЦЯ" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Завантажити Збережену Гру" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "РЕЖИМ КІЛЬКОХ ГРÐВЦІВ" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "Створити Гру" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "ПриєднатиÑÑŒ до Гри" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ОПЦІЇ" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "Ігрові Опції" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "Опції Графіки" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "Опції Відео" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Опції Звуку" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "Опції Мишки" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "ÐŸÑ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐšÐ»Ð°Ð²Ñ–Ñˆ" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "ÐŸÑ€Ð¾Ð³Ñ€Ð°Ð²Ð°Ð½Ð½Ñ Ð’Ñ–Ð´ÐµÐ¾" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1X" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2X" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "Повний Екран" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "ТрÑÑÑ–Ð½Ð½Ñ Ð•ÐºÑ€Ð°Ð½Ñƒ" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "Ввімкнено" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "Вимкнено" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "Туман" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "Імла" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Туман Війни" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "Субтитри" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "Тіні" -#: src/frontend.c:548 +#: src/frontend.c:557 msgid "GRAPHICS OPTIONS" msgstr "ОПЦІЇ ГРÐФІКИ" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "ГучніÑÑ‚ÑŒ Звуку" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "ГучніÑÑ‚ÑŒ Ефектів" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "ГучніÑÑ‚ÑŒ Музики" -#: src/frontend.c:691 +#: src/frontend.c:700 msgid "AUDIO OPTIONS" msgstr "ОПЦІЇ ЗВУКУ" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* Зміни вÑупають в Ñилу піÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð³Ñ€Ð¸" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "Режим Графіки*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "Віконний Режим" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "Роздільна ЗдатніÑÑ‚ÑŒ*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "Розмір ТекÑтур" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "Вертикальна СинхронізаціÑ*" -#: src/frontend.c:792 +#: src/frontend.c:801 msgid "VIDEO OPTIONS" msgstr "ОПЦІЇ ВІДЕО" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "* Може негативно вплинути на роботу" -#: src/frontend.c:952 +#: src/frontend.c:961 msgid "Reverse Rotation" msgstr "Зворотнє ОбертаннÑ" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "ЗафікÑувати КурÑор" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "Кольорові КурÑори*" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "ПомінÑти ÐŸÑ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐšÐ½Ð¾Ð¿Ð¾Ðº Миші" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "Повернути Ліворуч" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 msgid "MOUSE OPTIONS" msgstr "ОПЦІЇ МИШКИ" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "ВажкіÑÑ‚ÑŒ" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "Легко" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "Ðормально" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "Важко" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "ШвидкіÑÑ‚ÑŒ Прокрутки" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "Мова" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "Колір Підрозділів" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "ІГРОВІ ОПЦІЇ" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr ", моди: " @@ -13160,7 +13175,7 @@ msgid "Exit Game" msgstr "Покинути Гру" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "Індикатор ПрогреÑу" @@ -13232,17 +13247,17 @@ msgstr "" "\n" "Warzone Ñпробує запуÑтити гру без нього." -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "ЕфективніÑÑ‚ÑŒ Інженерного ОбладнаннÑ" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 #, fuzzy msgid "Construction Progress" msgstr "Помилка З’єднаннÑ" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "Ðакопичена ЕнергіÑ" @@ -14072,8 +14087,8 @@ msgstr "Продовжити Гру" msgid "GAME SAVED :" msgstr "ГРУ ЗБЕРЕЖЕÐО:" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "Ви знайшли %u енергії в бочці нафти." @@ -14379,17 +14394,17 @@ msgstr "ХоÑÑ‚ Починає Гру" msgid "Players" msgstr "Гравці" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "ВідправлÑєтьÑÑ ÐšÐ°Ñ€Ñ‚Ð°: %d%% " -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "Мапа: %d%% завантажена" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "ХОСТ" diff --git a/po/zh_CN.po b/po/zh_CN.po index 13f323669..d0038e178 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2009-05-13 16:12+0800\n" "Last-Translator: Terra \n" "Language-Team: Simplified Chinese \n" @@ -12577,8 +12577,8 @@ msgstr "" msgid "go directly to host screen" msgstr "" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "玩家" @@ -12734,31 +12734,31 @@ msgstr "玩家" msgid "Player dropped" msgstr "玩家" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "油井在燃烧, 无法建造钻油塔" -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - æŸä¼¤ %d%% - ç»éªŒ %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - æŸä¼¤ %d%% - ç»éªŒ %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "命令工程车建造钻油塔" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "命令工程车建造钻油塔" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "命令工程车建造钻油塔" @@ -12878,13 +12878,13 @@ msgstr "游æˆæ•™ç¨‹" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "返回" @@ -12910,270 +12910,284 @@ msgstr "载入游æˆ" msgid "SINGLE PLAYER" msgstr "å•äººæ¸¸æˆ" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "载入游æˆ" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "多人游æˆ" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "建立游æˆ" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "加入游æˆ" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "选项" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "图形选项" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "视频选项" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "音频选项" -#: src/frontend.c:416 +#: src/frontend.c:425 #, fuzzy msgid "Mouse Options" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "按键设置" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "视频回放" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "å…¨å±æ˜¾ç¤º" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "å±å¹•éœ‡åŠ¨" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "å¼€" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "å…³" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "迷雾" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "薄雾(å¯ä»¥çœ‹è§åœ°å½¢ï¼‰" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "战争迷雾" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "字幕" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "阴影" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "语音音é‡" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "声效音é‡" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "音ä¹éŸ³é‡" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "* é‡å¯æ¸¸æˆåŽç”Ÿæ•ˆ" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "图形模å¼*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "窗å£" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "å±å¹•åˆ†è¾¨çŽ‡*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "è´¨æ尺寸" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 #, fuzzy msgid "Reverse Rotation" msgstr "翻转鼠标" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:999 +#: src/frontend.c:1009 +msgid "Rotate Screen" +msgstr "" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "游æˆéš¾åº¦" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "容易" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "正常" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "å›°éš¾" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "å±å¹•å·åŠ¨é€Ÿåº¦" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "语言" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "å•ä½é¢œè‰²" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13292,7 +13306,7 @@ msgid "Exit Game" msgstr "退出游æˆ" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "进度æ¡" @@ -13360,16 +13374,16 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "生产æˆæœ¬" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 msgid "Construction Progress" msgstr "" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "" @@ -14207,8 +14221,8 @@ msgstr "继续游æˆ" msgid "GAME SAVED :" msgstr "游æˆå·²ä¿å­˜! " -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14523,17 +14537,17 @@ msgstr "主玩家正在开始游æˆ" msgid "Players" msgstr "玩家" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 92a53cd78..bfa7091d5 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-11 21:09+0200\n" +"POT-Creation-Date: 2010-07-24 01:26+0200\n" "PO-Revision-Date: 2009-05-11 00:21+0800\n" "Last-Translator: \n" "Language-Team: zh_TW\n" @@ -12629,8 +12629,8 @@ msgstr "host" msgid "go directly to host screen" msgstr "go directly to host screen" +#: src/configuration.c:442 #: src/configuration.c:443 -#: src/configuration.c:444 #: src/multistat.c:120 msgid "Player" msgstr "玩家" @@ -12786,31 +12786,31 @@ msgstr "玩家" msgid "Player dropped" msgstr "玩家" -#: src/display.c:1679 +#: src/display.c:1692 msgid "Cannot Build. Oil Resource Burning." msgstr "油田燃燒中,無法建築鑽油井" -#: src/display.c:1859 -#: src/display.c:2462 +#: src/display.c:1872 +#: src/display.c:2475 #, c-format msgid "%s - Damage %d%% - Experience %d, %s" msgstr "%s - æå‚· %d%% - 經驗值 %d, %s" -#: src/display.c:1875 +#: src/display.c:1888 #, fuzzy, c-format msgid "%s - Allied - Damage %d%% - Experience %d, %s" msgstr "%s - æå‚· %d%% - 經驗值 %d, %s" -#: src/display.c:2077 +#: src/display.c:2090 msgid "Truck ordered to build Oil Derrick" msgstr "命令工程車建造鑽油井" -#: src/display.c:2078 +#: src/display.c:2091 #, fuzzy msgid "2 trucks ordered to build Oil Derrick" msgstr "命令工程車建造鑽油井" -#: src/display.c:2079 +#: src/display.c:2092 #, fuzzy, c-format msgid "%d trucks ordered to build Oil Derrick" msgstr "命令工程車建造鑽油井" @@ -12924,13 +12924,13 @@ msgstr "教學模å¼" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" #: src/frontend.c:158 #: src/frontend.c:217 -#: src/frontend.c:351 -#: src/frontend.c:418 -#: src/frontend.c:552 -#: src/frontend.c:688 -#: src/frontend.c:795 -#: src/frontend.c:1002 -#: src/frontend.c:1145 +#: src/frontend.c:360 +#: src/frontend.c:427 +#: src/frontend.c:561 +#: src/frontend.c:697 +#: src/frontend.c:804 +#: src/frontend.c:1023 +#: src/frontend.c:1180 msgctxt "menu" msgid "Return" msgstr "返回" @@ -12957,270 +12957,285 @@ msgstr "載入éŠæˆ²" msgid "SINGLE PLAYER" msgstr "SINGLE PLAYER" -#: src/frontend.c:294 +#: src/frontend.c:301 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "載入已儲存的éŠæˆ²" -#: src/frontend.c:346 +#: src/frontend.c:355 msgid "MULTI PLAYER" msgstr "MULTIPLAYER" -#: src/frontend.c:348 +#: src/frontend.c:357 msgid "Host Game" msgstr "é–‹å•ŸéŠæˆ²" -#: src/frontend.c:349 +#: src/frontend.c:358 msgid "Join Game" msgstr "加入éŠæˆ²" -#: src/frontend.c:411 +#: src/frontend.c:420 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "é¸é …" -#: src/frontend.c:412 +#: src/frontend.c:421 msgid "Game Options" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:413 +#: src/frontend.c:422 msgid "Graphics Options" msgstr "圖形é¸é …" -#: src/frontend.c:414 +#: src/frontend.c:423 msgid "Video Options" msgstr "顯示é¸é …" -#: src/frontend.c:415 +#: src/frontend.c:424 #: src/ingameop.c:288 msgid "Audio Options" msgstr "音效é¸é …" -#: src/frontend.c:416 +#: src/frontend.c:425 msgid "Mouse Options" msgstr "滑鼠é¸é …" -#: src/frontend.c:417 +#: src/frontend.c:426 msgid "Key Mappings" msgstr "éµç›¤é…ç½®" -#: src/frontend.c:479 +#: src/frontend.c:488 msgid "Video Playback" msgstr "播放影片" -#: src/frontend.c:483 -#: src/frontend.c:642 +#: src/frontend.c:492 +#: src/frontend.c:651 msgid "1X" msgstr "1å€å¤§å°" -#: src/frontend.c:487 -#: src/frontend.c:632 +#: src/frontend.c:496 +#: src/frontend.c:641 msgid "2X" msgstr "2å€å¤§å°" -#: src/frontend.c:491 -#: src/frontend.c:637 -#: src/frontend.c:763 -#: src/frontend.c:817 +#: src/frontend.c:500 +#: src/frontend.c:646 +#: src/frontend.c:772 +#: src/frontend.c:826 msgid "Fullscreen" msgstr "全螢幕" -#: src/frontend.c:501 +#: src/frontend.c:510 msgid "Screen Shake" msgstr "震動螢幕" -#: src/frontend.c:504 -#: src/frontend.c:532 -#: src/frontend.c:540 -#: src/frontend.c:575 -#: src/frontend.c:609 +#: src/frontend.c:513 +#: src/frontend.c:541 +#: src/frontend.c:549 +#: src/frontend.c:584 #: src/frontend.c:618 -#: src/frontend.c:784 -#: src/frontend.c:878 -#: src/frontend.c:916 -#: src/frontend.c:955 -#: src/frontend.c:967 -#: src/frontend.c:979 -#: src/frontend.c:991 -#: src/frontend.c:1024 -#: src/frontend.c:1037 -#: src/frontend.c:1051 -#: src/frontend.c:1065 +#: src/frontend.c:627 +#: src/frontend.c:793 +#: src/frontend.c:887 +#: src/frontend.c:925 +#: src/frontend.c:964 +#: src/frontend.c:976 +#: src/frontend.c:988 +#: src/frontend.c:1000 +#: src/frontend.c:1045 +#: src/frontend.c:1058 +#: src/frontend.c:1072 +#: src/frontend.c:1086 msgid "On" msgstr "é–‹å•Ÿ" -#: src/frontend.c:508 -#: src/frontend.c:528 -#: src/frontend.c:544 -#: src/frontend.c:570 -#: src/frontend.c:604 -#: src/frontend.c:622 -#: src/frontend.c:788 -#: src/frontend.c:873 -#: src/frontend.c:911 -#: src/frontend.c:959 -#: src/frontend.c:971 -#: src/frontend.c:983 -#: src/frontend.c:995 -#: src/frontend.c:1019 -#: src/frontend.c:1032 -#: src/frontend.c:1046 -#: src/frontend.c:1060 +#: src/frontend.c:517 +#: src/frontend.c:537 +#: src/frontend.c:553 +#: src/frontend.c:579 +#: src/frontend.c:613 +#: src/frontend.c:631 +#: src/frontend.c:797 +#: src/frontend.c:882 +#: src/frontend.c:920 +#: src/frontend.c:968 +#: src/frontend.c:980 +#: src/frontend.c:992 +#: src/frontend.c:1004 +#: src/frontend.c:1040 +#: src/frontend.c:1053 +#: src/frontend.c:1067 +#: src/frontend.c:1081 msgid "Off" msgstr "關閉" -#: src/frontend.c:513 +#: src/frontend.c:522 #: src/multiint.c:1205 msgid "Fog" msgstr "迷霧" -#: src/frontend.c:516 -#: src/frontend.c:591 +#: src/frontend.c:525 +#: src/frontend.c:600 msgid "Mist" msgstr "迷霧" -#: src/frontend.c:520 -#: src/frontend.c:585 +#: src/frontend.c:529 +#: src/frontend.c:594 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "完全迷霧" -#: src/frontend.c:525 +#: src/frontend.c:534 msgid "Subtitles" msgstr "字幕" -#: src/frontend.c:537 +#: src/frontend.c:546 msgid "Shadows" msgstr "å½±å­" -#: src/frontend.c:548 +#: src/frontend.c:557 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:676 +#: src/frontend.c:685 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "語音音é‡" -#: src/frontend.c:680 +#: src/frontend.c:689 #: src/ingameop.c:182 msgid "FX Volume" msgstr "音效音é‡" -#: src/frontend.c:684 +#: src/frontend.c:693 #: src/ingameop.c:187 msgid "Music Volume" msgstr "背景音樂音é‡" -#: src/frontend.c:691 +#: src/frontend.c:700 #, fuzzy msgid "AUDIO OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:756 +#: src/frontend.c:765 msgid "* Takes effect on game restart" msgstr "*é‡å•ŸéŠæˆ²å¾Œç”Ÿæ•ˆ" -#: src/frontend.c:759 +#: src/frontend.c:768 msgid "Graphics Mode*" msgstr "圖形模å¼*" -#: src/frontend.c:767 -#: src/frontend.c:812 +#: src/frontend.c:776 +#: src/frontend.c:821 msgid "Windowed" msgstr "視窗模å¼" -#: src/frontend.c:771 +#: src/frontend.c:780 msgid "Resolution*" msgstr "解æžåº¦*" -#: src/frontend.c:776 +#: src/frontend.c:785 msgid "Texture size" msgstr "貼圖精細度" -#: src/frontend.c:780 +#: src/frontend.c:789 msgid "Vertical sync*" msgstr "åž‚ç›´åŒæ­¥*" -#: src/frontend.c:792 +#: src/frontend.c:801 #, fuzzy msgid "VIDEO OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:948 +#: src/frontend.c:957 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:952 +#: src/frontend.c:961 #, fuzzy msgid "Reverse Rotation" msgstr "åå‘滑鼠" -#: src/frontend.c:963 +#: src/frontend.c:972 msgid "Trap Cursor" msgstr "æ•æ‰æ»‘é¼ " -#: src/frontend.c:975 +#: src/frontend.c:984 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:988 +#: src/frontend.c:997 #, fuzzy msgid "Switch Mouse Buttons" msgstr "滑鼠é¸é …" -#: src/frontend.c:999 +#: src/frontend.c:1009 +#, fuzzy +msgid "Rotate Screen" +msgstr "å‘左旋轉" + +#: src/frontend.c:1012 +#: src/frontend.c:1100 +msgid "Middle Mouse" +msgstr "" + +#: src/frontend.c:1016 +#: src/frontend.c:1095 +msgid "Right Mouse" +msgstr "" + +#: src/frontend.c:1020 #, fuzzy msgid "MOUSE OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:1100 -#: src/frontend.c:1166 +#: src/frontend.c:1135 +#: src/frontend.c:1201 msgid "Difficulty" msgstr "難度" -#: src/frontend.c:1104 -#: src/frontend.c:1174 -#: src/frontend.c:1205 +#: src/frontend.c:1139 +#: src/frontend.c:1209 +#: src/frontend.c:1240 msgid "Easy" msgstr "容易" -#: src/frontend.c:1107 -#: src/frontend.c:1177 -#: src/frontend.c:1197 +#: src/frontend.c:1142 +#: src/frontend.c:1212 +#: src/frontend.c:1232 msgid "Normal" msgstr "普通" -#: src/frontend.c:1111 -#: src/frontend.c:1180 -#: src/frontend.c:1201 +#: src/frontend.c:1146 +#: src/frontend.c:1215 +#: src/frontend.c:1236 msgid "Hard" msgstr "困難" -#: src/frontend.c:1116 -#: src/frontend.c:1167 +#: src/frontend.c:1151 +#: src/frontend.c:1202 msgid "Scroll Speed" msgstr "æ²å‹•é€Ÿåº¦" -#: src/frontend.c:1130 -#: src/frontend.c:1164 +#: src/frontend.c:1165 +#: src/frontend.c:1199 msgid "Language" msgstr "語言" -#: src/frontend.c:1142 -#: src/frontend.c:1165 +#: src/frontend.c:1177 +#: src/frontend.c:1200 msgid "Unit Colour" msgstr "å–®ä½é¡è‰²" -#: src/frontend.c:1148 -#: src/frontend.c:1168 +#: src/frontend.c:1183 +#: src/frontend.c:1203 msgid "GAME OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:1294 +#: src/frontend.c:1329 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -13338,7 +13353,7 @@ msgid "Exit Game" msgstr "離開éŠæˆ²" #: src/hci.c:4566 -#: src/intdisplay.c:270 +#: src/intdisplay.c:267 msgid "Progress Bar" msgstr "進度æ¢" @@ -13406,17 +13421,17 @@ msgid "" "Warzone will try to load the game without it." msgstr "" -#: src/intdisplay.c:197 +#: src/intdisplay.c:194 #, fuzzy msgid "Build Progress" msgstr "建築物HP(Build Points)" -#: src/intdisplay.c:228 +#: src/intdisplay.c:225 #, fuzzy msgid "Construction Progress" msgstr "建築單ä½" -#: src/intdisplay.c:263 +#: src/intdisplay.c:260 msgid "Power Accrued" msgstr "能é‡å¢žåŠ " @@ -14258,8 +14273,8 @@ msgstr "繼續éŠæˆ²" msgid "GAME SAVED :" msgstr "éŠæˆ²å·²å„²å­˜" -#: src/move.c:2540 -#: src/move.c:2556 +#: src/move.c:2525 +#: src/move.c:2541 #, c-format msgid "You found %u power in an oil drum." msgstr "" @@ -14576,17 +14591,17 @@ msgstr "主玩家已開始éŠæˆ²" msgid "Players" msgstr "玩家" -#: src/multiint.c:3463 +#: src/multiint.c:3464 #, c-format msgid "Sending Map: %d%% " msgstr "" -#: src/multiint.c:3471 +#: src/multiint.c:3472 #, c-format msgid "Map: %d%% downloaded" msgstr "" -#: src/multiint.c:3497 +#: src/multiint.c:3498 msgid "HOST" msgstr "" From 6957b04072c600d618de670093d78fd321f259e8 Mon Sep 17 00:00:00 2001 From: Cyp Date: Sat, 24 Jul 2010 13:32:09 +0200 Subject: [PATCH 14/24] =?UTF-8?q?astar.c=20=E2=86=92=20astar.cpp=20in=20.v?= =?UTF-8?q?cproj=20file.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- win32/Warzone2100.vs2k8.vcproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/Warzone2100.vs2k8.vcproj b/win32/Warzone2100.vs2k8.vcproj index f8e255029..b7c30823d 100644 --- a/win32/Warzone2100.vs2k8.vcproj +++ b/win32/Warzone2100.vs2k8.vcproj @@ -239,7 +239,7 @@ > Date: Sun, 25 Jul 2010 15:28:21 +0000 Subject: [PATCH 15/24] Add an option for the rotating radar. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11284 4a71c877-e1ca-e34f-864e-861f7616d084 --- src/configuration.c | 1 + src/frontend.c | 11 +++++++++++ src/frontend.h | 2 ++ 3 files changed, 14 insertions(+) diff --git a/src/configuration.c b/src/configuration.c index d102c3124..c1fd987a5 100644 --- a/src/configuration.c +++ b/src/configuration.c @@ -740,6 +740,7 @@ BOOL saveConfig(void) setWarzoneKeyNumeric("trapCursor", war_GetTrapCursor()); setWarzoneKeyNumeric("vsync", war_GetVsync()); setWarzoneKeyNumeric("textureSize", getTextureSize()); + setWarzoneKeyNumeric("rotateRadar", rotateRadar); setWarzoneKeyNumeric("PauseOnFocusLoss", war_GetPauseOnFocusLoss()); setWarzoneKeyNumeric("ColouredCursor", war_GetColouredCursor()); setWarzoneKeyString("masterserver_name", NETgetMasterserverName()); diff --git a/src/frontend.c b/src/frontend.c index 2626e8352..a364dfc89 100644 --- a/src/frontend.c +++ b/src/frontend.c @@ -50,6 +50,7 @@ #include "multiint.h" #include "multilimit.h" #include "multiplay.h" +#include "radar.h" #include "seqdisp.h" #include "texture.h" #include "version.h" @@ -1176,6 +1177,10 @@ static BOOL startGameOptionsMenu(void) widgSetButtonState(psWScreen, FE_P0 + playercolor, WBUT_LOCK); addTextButton(FRONTEND_COLOUR, FRONTEND_POS4X-25, FRONTEND_POS4Y, _("Unit Colour"), 0); + // Radar + addTextButton(FRONTEND_RADAR, FRONTEND_POS6X - 25, FRONTEND_POS6Y, _("Radar"), 0); + addTextButton(FRONTEND_RADAR_R, FRONTEND_POS6M - 25, FRONTEND_POS6Y, rotateRadar ? _("Rotating") : _("Fixed"), 0); + // Quit addMultiBut(psWScreen, FRONTEND_BOTFORM, FRONTEND_QUIT, 10, 10, 30, 29, P_("menu", "Return"), IMAGE_RETURN, IMAGE_RETURN_HI, IMAGE_RETURN_HI); @@ -1220,6 +1225,12 @@ BOOL runGameOptionsMenu(void) break; } break; + + case FRONTEND_RADAR_R: + rotateRadar = !rotateRadar; + widgSetString(psWScreen, FRONTEND_RADAR_R, rotateRadar ? _("Rotating") : _("Fixed")); + break; + case FRONTEND_SCROLLSPEED: break; diff --git a/src/frontend.h b/src/frontend.h index 4515e4afb..39dc07462 100644 --- a/src/frontend.h +++ b/src/frontend.h @@ -187,6 +187,8 @@ enum FRONTEND_GAMEOPTIONS = 21000, // Game Options menu FRONTEND_LANGUAGE, FRONTEND_LANGUAGE_R, + FRONTEND_RADAR, + FRONTEND_RADAR_R, FRONTEND_COLOUR, FRONTEND_DIFFICULTY, FRONTEND_DIFFICULTY_R, From 45de3b488c9b31bf591e2691a1186c65383d020e Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Sun, 25 Jul 2010 15:29:27 +0000 Subject: [PATCH 16/24] Update translations. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11285 4a71c877-e1ca-e34f-864e-861f7616d084 --- po/cs.po | 277 +++++++++++++++++++++++++++------------------------ po/da.po | 277 +++++++++++++++++++++++++++------------------------ po/de.po | 277 +++++++++++++++++++++++++++------------------------ po/en_GB.po | 277 +++++++++++++++++++++++++++------------------------ po/es.po | 277 +++++++++++++++++++++++++++------------------------ po/et_EE.po | 277 +++++++++++++++++++++++++++------------------------ po/fi.po | 280 +++++++++++++++++++++++++++------------------------- po/fr.po | 277 +++++++++++++++++++++++++++------------------------ po/fy.po | 280 +++++++++++++++++++++++++++------------------------- po/ga.po | 280 +++++++++++++++++++++++++++------------------------- po/hr.po | 277 +++++++++++++++++++++++++++------------------------ po/it.po | 277 +++++++++++++++++++++++++++------------------------ po/la.po | 276 +++++++++++++++++++++++++++------------------------ po/lt.po | 280 +++++++++++++++++++++++++++------------------------- po/nb.po | 280 +++++++++++++++++++++++++++------------------------- po/nl.po | 277 +++++++++++++++++++++++++++------------------------ po/pl.po | 277 +++++++++++++++++++++++++++------------------------ po/pt.po | 277 +++++++++++++++++++++++++++------------------------ po/pt_BR.po | 277 +++++++++++++++++++++++++++------------------------ po/ro.po | 280 +++++++++++++++++++++++++++------------------------- po/ru.po | 277 +++++++++++++++++++++++++++------------------------ po/sl.po | 277 +++++++++++++++++++++++++++------------------------ po/uk_UA.po | 277 +++++++++++++++++++++++++++------------------------ po/zh_CN.po | 280 +++++++++++++++++++++++++++------------------------- po/zh_TW.po | 277 +++++++++++++++++++++++++++------------------------ 25 files changed, 3649 insertions(+), 3296 deletions(-) diff --git a/po/cs.po b/po/cs.po index 748954b0d..73ab2732c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-05-09 16:05+0000\n" "Last-Translator: Lubos \n" "Language-Team: Czech \n" @@ -12756,363 +12756,378 @@ msgstr "Speciální" msgid "Hero" msgstr "Hrdina" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "Kampaň pro Jednoho HráÄe" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "Hra pro Více HráÄů" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Tutoriál" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Nastavení" -#: src/frontend.c:100 +#: src/frontend.c:101 #, fuzzy msgid "View Intro" msgstr "Pohled na východ" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "UkonÄit Hru" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "HLAVNà MENU" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Rychlá hra" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "TUTORIÃLY" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "ZpÄ›t" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nová kampaň" -#: src/frontend.c:212 +#: src/frontend.c:213 #, fuzzy msgid "Start Skirmish Game" msgstr "ZaÄni hostovat hru" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Nahraj Hru" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "HRA JEDNOHO HRÃÄŒE" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "NaÄti Uloženou Hru" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "HRA VÃCE HRÃČŮ" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "PÅ™ipojit se ke hÅ™e" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "NASTAVENÃ" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Herní nastavení" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Grafická nastavení" -#: src/frontend.c:423 +#: src/frontend.c:424 #, fuzzy msgid "Video Options" msgstr "Zvuková nastavení" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Zvuková nastavení" -#: src/frontend.c:425 +#: src/frontend.c:426 #, fuzzy msgid "Mouse Options" msgstr "Herní nastavení" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Mapování kláves" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "PÅ™ehrávání videa" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Celá obrazovka" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Zapnuto" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Vypnuto" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Mlha" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Mlha" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "VáleÄná mlha" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Titulky" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Stíny" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Hlasitost Å™eÄi" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Hlasitost efektů" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Hlasitost hudby" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Projeví se až po restartu hry" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Grafický mód*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "RozliÅ¡ení*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Velikost textury" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 #, fuzzy msgid "Reverse Rotation" msgstr "ObraÅ¥ myÅ¡" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Herní nastavení" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "OtoÄit doleva" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Obtížnost" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Snadná" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normální" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Těžká" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Rychlost rolování" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Jazyk" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Barva jednotky" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "OtoÄit doprava" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "HERNà NASTAVENÃ" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" diff --git a/po/da.po b/po/da.po index 44883ee1b..7b2add877 100644 --- a/po/da.po +++ b/po/da.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-05-09 16:08+0000\n" "Last-Translator: carson \n" "Language-Team: Dansk \n" @@ -13036,366 +13036,381 @@ msgstr "Speciel" msgid "Hero" msgstr "Helt" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "Solokampange" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "Flerbruger spil" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Gennemgang" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Indstillinger" -#: src/frontend.c:100 +#: src/frontend.c:101 #, fuzzy msgid "View Intro" msgstr "Find næste truck" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Afslut spil" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "HOVED MENU" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Hurtgigt spil" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "TUTORIALS" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Tilbage" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Ny kampange" -#: src/frontend.c:212 +#: src/frontend.c:213 #, fuzzy msgid "Start Skirmish Game" msgstr "Værten starter spillet" -#: src/frontend.c:213 +#: src/frontend.c:214 #, fuzzy msgid "Challenges" msgstr "Hestekrafter" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Indlæs spil" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "SOLO SPILLER" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Indlæs gemt spil" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "FLER SPILLER" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Udbyd spil" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Forbind til vært" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "TILVALG" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Spil indstillinger" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Grafik indstillinger" -#: src/frontend.c:423 +#: src/frontend.c:424 #, fuzzy msgid "Video Options" msgstr "Lyd indstillinger" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Lyd indstillinger" -#: src/frontend.c:425 +#: src/frontend.c:426 #, fuzzy msgid "Mouse Options" msgstr "Spil indstillinger" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Tastatur indstillinger" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Ryst skærm" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Til" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Fra" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "TÃ¥ge" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "AfstandstÃ¥ge" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "KrigstÃ¥ge" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Undertekster" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Stemme volume" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Effekt volume" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Musik volume" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Grafik indstillinger" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Vindue" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "" -#: src/frontend.c:785 +#: src/frontend.c:786 #, fuzzy msgid "Texture size" msgstr "Besvar ild" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 #, fuzzy msgid "Reverse Rotation" msgstr "Omvendt mus" -#: src/frontend.c:972 +#: src/frontend.c:973 #, fuzzy msgid "Trap Cursor" msgstr "Transportskib" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Spil indstillinger" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Drej til venstre" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Sværhedsgræd" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Begynder" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Øvet" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Svær" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Kamera hastighed" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Sprog" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Holdfarve" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Drej til højre" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "SPIL INDSTILLINGER" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" diff --git a/po/de.po b/po/de.po index 8588bf983..8726989e4 100644 --- a/po/de.po +++ b/po/de.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2010-06-05 07:09+0100\n" "Last-Translator: Steven 'Kreuvf' Koenig \n" "Language-Team: Deutsch \n" @@ -12724,351 +12724,366 @@ msgstr "Spezialist" msgid "Hero" msgstr "Held" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Einzelspieler" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Mehrspieler" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Tutorial" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Optionen" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Intro zeigen" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Spiel beenden" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "HAUPTMENÃœ" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Schnelles Spiel" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "TUTORIALS" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Zurück" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Neue Kampagne" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Geplänkel eröffnen" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Herausforderungen" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Spielstand laden" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "Einzelspieler" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Spielstand laden" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "Mehrspieler" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Spiel eröffnen" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Spiel beitreten" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPTIONEN" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Spieloptionen" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Grafikeinstellungen" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Videoeinstellungen" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Audioeinstellungen" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Mausoptionen" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Tastenzuordnung" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Videowiedergabe" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Vollbild" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Kameraerschütterungen" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "An" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Aus" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Nebel" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Dunst" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Nebel des Krieges" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Untertitel" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Schatten" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "GRAFIKOPTIONEN" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Sprachlautstärke" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Effektlautstärke" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Musiklautstärke" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "AUDIOOPTIONEN" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Wirkt sich bei Spielneustart aus" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Grafikmodus*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Fenster" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Auflösung*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Texturgröße" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Vertikale Synchronisation" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "VIDEOOPTIONEN" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Könnte die Spielgeschwindigkeit negativ beeinflussen" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Drehrichtung umkehren" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Mauszeiger einfangen" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Bunte Mauszeiger*" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Maustasten vertauschen" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Nach links rotieren" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "MAUSOPTIONEN" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Schwierigkeitsgrad" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Einfach" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Schwer" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Scrollgeschwindigkeit" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Sprache" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Einheitenfarbe" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Nach rechts rotieren" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "SPIELOPTIONEN" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod: " diff --git a/po/en_GB.po b/po/en_GB.po index 865995376..b066404f7 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-05-05 12:29+0000\n" "Last-Translator: Jen Ockwell \n" "Language-Team: English (United Kingdom) \n" @@ -13023,364 +13023,379 @@ msgstr "Special" msgid "Hero" msgstr "Hero" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "Single Player Campaign" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "Multi Player Game" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Tutorial" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Options" -#: src/frontend.c:100 +#: src/frontend.c:101 #, fuzzy msgid "View Intro" msgstr "View next Truck" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Quit Game" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "MAIN MENU" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Fast Play" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "TUTORIALS" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Return" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "New Campaign" -#: src/frontend.c:212 +#: src/frontend.c:213 #, fuzzy msgid "Start Skirmish Game" msgstr "Start Hosting Game" -#: src/frontend.c:213 +#: src/frontend.c:214 #, fuzzy msgid "Challenges" msgstr "Scavenger" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Load Game" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "SINGLE PLAYER" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Load Saved Game" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MULTIPLAYER" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Host Game" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Join Game" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPTIONS" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Game Options" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Graphics Options" -#: src/frontend.c:423 +#: src/frontend.c:424 #, fuzzy msgid "Video Options" msgstr "Audio Options" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Audio Options" -#: src/frontend.c:425 +#: src/frontend.c:426 #, fuzzy msgid "Mouse Options" msgstr "Game Options" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Key Mappings" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Video Playback" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Fullscreen" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Screen Shake" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "On" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Off" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Fog" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Mist" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Fog Of War" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Subtitles" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Shadows" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Voice Volume" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "FX Volume" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Music Volume" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Takes effect on game restart" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Graphics Mode*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Windowed" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Resolution*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Texture size" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 #, fuzzy msgid "Reverse Rotation" msgstr "Reverse Mouse" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Trap Cursor" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Game Options" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Rotate Left" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Difficulty" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Easy" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Hard" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Scroll Speed" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Language" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Unit Colour" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Rotate Right" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "GAME OPTIONS" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" diff --git a/po/es.po b/po/es.po index 889743059..aaa9134de 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2010-04-29 17:24+0100\n" "Last-Translator: Daniel Vijande \n" "Language-Team: Spanish \n" @@ -12701,351 +12701,366 @@ msgstr "Especial" msgid "Hero" msgstr "Héroe" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Campaña Un Jugador" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Juego Multijugador" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Tutorial" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Opciones" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Ver Intro" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Salir del juego" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "MENÚ PRINCIPAL" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Partida Rápida" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "TUTORIALES" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Volver" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nueva Campaña" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Hospedar una Partida" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Desafíos" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Cargar Partida" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "UN JUGADOR" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Cargar Partida Guardada" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MULTIJUGADOR" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Hospedar Partida" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Unirse a una Partida" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPCIONES" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Opciones de juego" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Opciones Gráficas" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Opciones de Vídeo" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Opciones de Audio" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Opciones de ratón" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Mapeos de teclas" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Reproducción de Vídeo" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Pantalla Completa" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Agitar pantalla" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Activado" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Desactivado" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Niebla" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Neblina" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Niebla de Guerra" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Subtítulos" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Sombras" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "OPCIONES GRÃFICAS" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volumen de Voces" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volumen de Sonidos" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volumen de Música" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "OPCIONES DE AUDIO" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Tendrá efecto al reiniciar el juego" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Modo Gráfico*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "En ventana" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Resolución*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Tamaño de las texturas" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Sincronización Vertical" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "OPCIONES DE VIDEO" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Puede afectar negativamente al rendimiento" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Invertir Rotación" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Capturar Cursor" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Cursores de colores" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Cambiar botones del ratón" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Girar a la Izquierda" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "OPCIONES DE RATÓN" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Dificultad" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Fácil" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Difícil" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Velocidad de desplazamiento" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Idioma" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Color de las unidades" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Girar a la derecha" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "OPCIONES DE JUEGO" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod:" diff --git a/po/et_EE.po b/po/et_EE.po index 5d3934f42..ecb9a8834 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2010-05-10 16:59+0200\n" "Last-Translator: erlando \n" "Language-Team: Estonian \n" @@ -12697,351 +12697,366 @@ msgstr "Eriline" msgid "Hero" msgstr "Kangelane" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Ãœksik Mäng" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Mitmik Mäng" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Õpetus" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Seaded" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Näita Sissejuhatust" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Välju Mängust" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "PEA MENÜÜ" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Kiir Mäng" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "ÕPETUSED" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Tagasi" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Uus Kampaania" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Alusta Ãœksillahingut" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Väljakutse" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Laadi Mäng" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "ÃœKSIK MÄNG" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Laadi Salvestatud Mäng" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MITMIKMÄNG" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Võõrusta Mängu" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Liitu Mängu" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "SEADED" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Mängu Seaded" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Graafika Seaded" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Video Seaded" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Audio Seaded" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Hiire Seaded" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Nuppude Vasted" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Video Taasesitus" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Täisaken" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Ekraani Värin" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Sees" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Väljas" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Udu" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Udu" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Sõjaudu" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Suptiitrid" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Varjud" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "GRAAFIKA SEADED" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Hääle Volüüm" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "FX Volüüm" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Muusika Volüüm" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "HELI SEADED" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Võtab efekti kui mäng uuesti käivitatakse" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Graafika Mode*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Akendatud" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Resolution*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Tekstuuri suurus" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Vertical sync*" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "VIDEO SEADED" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* May negatively affect performance" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Tagasipööre" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Püüniskursor" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Värvilised Kursorid*" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Vahetatud Hiire Nupud" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Keera Vasakule" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "HIIRE SEADED" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Raskusaste" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Kerge" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normaalne" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Raske" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Kerimiskiirus" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Keel" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Ãœksuse Värv" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Keera Paremale" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "MÄNGU SEADED" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod:" diff --git a/po/fi.po b/po/fi.po index 87b7a2ff5..57aed0965 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-05-09 10:33+0000\n" "Last-Translator: Lartza \n" "Language-Team: Finnish \n" @@ -12708,359 +12708,374 @@ msgstr "" msgid "Hero" msgstr "Sankari" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "Yksinpelikampanja" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "Moninpelikampanja" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Asetukset" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Poistu pelistä" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "PÄÄVALIKKO" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Palaa" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Uusi kampanja" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Lataa peli" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "YKSINPELI" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Lataa tallennettu peli" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MONINPELI" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Liity peliin" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ASETUKSET" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Peliasetukset" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "" -#: src/frontend.c:423 +#: src/frontend.c:424 #, fuzzy msgid "Video Options" msgstr "Peliasetukset" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:425 +#: src/frontend.c:426 #, fuzzy msgid "Mouse Options" msgstr "Peliasetukset" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Kokoruutu" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Ruudn tärinä" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Päällä" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Pois päältä" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Sumu" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Tekstitykset" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Varjot" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Ikkunoitu" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Resoluutio*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Peliasetukset" -#: src/frontend.c:1009 +#: src/frontend.c:1010 msgid "Rotate Screen" msgstr "" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Vaikeustaso" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Helppo" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Vaikea" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Vieritysnopeus" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Kieli" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "latina" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "PELIASETUKSET" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -14887,9 +14902,6 @@ msgstr "" #~ msgid "Russian" #~ msgstr "venäjä" -#~ msgid "Latin" -#~ msgstr "latina" - #, fuzzy #~ msgid "Strategy Game" #~ msgstr "Tallenna peli" diff --git a/po/fr.po b/po/fr.po index 5afbb1fee..0ee22e0b8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2010-04-21 08:32-0500\n" "Last-Translator: Gilles J. Séguin \n" "Language-Team: French \n" @@ -12803,354 +12803,369 @@ msgstr "Spécial" msgid "Hero" msgstr "Héros" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Un Joueur" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Multi-joueurs" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Tutorielle" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Voir Intro" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Quitter la partie" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "MENU PRINCIPAL" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Partie Rapide" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "TUTORIAUX" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Menu précédent" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nouvelle Campagne" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Démarrer escarmouche" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Défis" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Charger une Partie" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "UN JOUEUR" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Charger une partie Enregistrée" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MULTI-JOUEURS" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Créer une Nouvelle Partie" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Joindre une Partie" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Options du Jeu" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Options Graphiques" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Options Vidéos" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Options Audio" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Options souris" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Raccourcis Clavier" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Affichage des Vidéos" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Plein Écran" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Tremblements de l'écran (explosion)" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Activé" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Désactivé" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Brouillard" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Brume" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Brouillard de guerre" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Sous-titres" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Ombres" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "OPTIONS GRAPHIQUES" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volume de la Voix" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volume des Bruits(FX)" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volume de la Musique" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "OPTIONS AUDIO" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Le jeu doit être redémarré pour que ces options s'appliquent" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Paramètres Visuels*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Fenêtré" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Résolution*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Taille des Textures" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Fréquence da rafraîchissement verticale*" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "OPTIONS VIDÉOS" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Risque de diminuer les performances" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Rotation Inversée" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Piéger le Curseur" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Curseur Coloré*" -#: src/frontend.c:997 +#: src/frontend.c:998 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Inverser les Boutons de la Souris" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Rotation vers la Gauche" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "OPTIONS SOURIS" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Difficulté" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Facile" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normale" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Difficile" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Vitesse de Défilement" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Langue" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Couleur des Unités" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Rotation vers la Droite" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "OPTIONS" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod: " diff --git a/po/fy.po b/po/fy.po index f3fceb3fd..9dd4153b2 100644 --- a/po/fy.po +++ b/po/fy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-04-21 08:59+0000\n" "Last-Translator: Wander Nauta \n" "Language-Team: Frisian \n" @@ -12700,357 +12700,372 @@ msgstr "Spesjaal" msgid "Hero" msgstr "Held" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "Spilernamme Selekteare" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "Spiler" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "" -#: src/frontend.c:212 +#: src/frontend.c:213 #, fuzzy msgid "Start Skirmish Game" msgstr "Tsjinnen Spul Starte" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Opslein Spul Lade" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Dize" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Kriigsdize" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:1009 +#: src/frontend.c:1010 msgid "Rotate Screen" msgstr "" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "YNSTELLINGS" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Latyn" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -14888,9 +14903,6 @@ msgstr "" #~ msgid "Russian" #~ msgstr "Russysk" -#~ msgid "Latin" -#~ msgstr "Latyn" - #, fuzzy #~ msgid "Strategy Game" #~ msgstr "Spul Opslaan" diff --git a/po/ga.po b/po/ga.po index facbb9137..0ef411b57 100644 --- a/po/ga.po +++ b/po/ga.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-05-08 17:14+0000\n" "Last-Translator: Seanan \n" "Language-Team: Irish \n" @@ -12699,357 +12699,372 @@ msgstr "Sain" msgid "Hero" msgstr "Laoch" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "Roghnaigh Ainm Imreora" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "Imreoir" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "" -#: src/frontend.c:212 +#: src/frontend.c:213 #, fuzzy msgid "Start Skirmish Game" msgstr "Tosaigh le Bunáiteanna" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Ceo" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:1009 +#: src/frontend.c:1010 msgid "Rotate Screen" msgstr "" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "ROGHANNA" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Laidin" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -14875,9 +14890,6 @@ msgstr "" #~ msgid "Russian" #~ msgstr "Rúisis" -#~ msgid "Latin" -#~ msgstr "Laidin" - #~ msgid "English" #~ msgstr "Sacs-Bhéarla" diff --git a/po/hr.po b/po/hr.po index efbfcfb78..51d2514dd 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: WZ2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: \n" "Last-Translator: metalwarrior95 \n" "Language-Team: \n" @@ -12708,351 +12708,366 @@ msgstr "Specijal" msgid "Hero" msgstr "Junak" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Jedan IgraÄ" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "ViÅ¡e IgraÄa" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Vježbe" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Opcije" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Prikaži Uvod" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Izaći iz Igre" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "GLAVNI MENI" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Brzo Igranje" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "Vježbe" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Natrag" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nova Kampanja" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "PoÄeti Trening Igru" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Izazovi" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "UÄitaj Igru" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "JEDAN IGRAÄŒ" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "UÄitaj SaÄuvanu Igru" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "VIÅ E IGRAÄŒA" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Napravi Igru" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Pridruži se Igri" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "POSTAVKE" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Opcije Igre" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "GrafiÄke opcije" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Video opcije" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Audio opcije" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Opcije miÅ¡a" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Video reprodukcija" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Puni Ekran" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Drmati Zaslon" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "UkljuÄeno" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "IskljuÄeno" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Magla" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Misterija" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Magla Rata" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Titlovi" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Sjene" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "OPCIJE SLIKE" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Glasovna jaÄina" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "FX jaÄina" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "JaÄina glazbe" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "OPCIJE ZVUKA" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Radi tek nakon ponovnog pokretanja igre" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "GrafiÄki naÄin" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "U prozoru" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Rezolucija*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "VeliÄina tekstura*" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Verikarno osvježivanje*" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "OPCIJE VIDEA" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Može negativno utjecati na performanse" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Obrni rotaciju" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Zarobi Kursor" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Obojeni Kursori*" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Zamjeni Tipke MiÅ¡a" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Zakreni u lijevo" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "OPCIJE MIÅ A" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Težina" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Lagano" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Srednje" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "TeÅ¡ko" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Brzina " -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Jezik" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Boja" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Zakreni u desno" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "OPCIJE IGRE" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Modifikacija:" diff --git a/po/it.po b/po/it.po index 211323b4f..5f70183e1 100644 --- a/po/it.po +++ b/po/it.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2010-05-05 12:19+0100\n" "Last-Translator: Cristian Odorico \n" "Language-Team: Italian \n" @@ -12700,351 +12700,366 @@ msgstr "Speciale" msgid "Hero" msgstr "Eroe" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Giocatore singolo" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Multi Player" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Tutorial" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Opzioni" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Guarda l'introduzione" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Esci dal Gioco" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "MENU PRINCIPALE" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Partita Veloce" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "TUTORIAL" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Indietro" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nuova Campagna" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Inizia schermaglia" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Sfide" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Carica Partita" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "GIOCATORE SINGOLO" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Carica Partita" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MULTIGIOCATORE" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Ospita una partita" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Unisciti a una partita" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPZIONI" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Opzioni di Gioco" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Opzioni Grafiche" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Opzioni video." -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Opzioni Audio" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Opzioni del mouse" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Assegnazione dei Tasti" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Riproduzione dei Video" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "A schermo pieno" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Scuoti lo Schermo" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "On" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Off" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Nebbia" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Nebbia" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Nebbia di Guerra" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Sottotitoli" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Ombre" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "OPZIONI GRAFICHE" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volume Voce" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volume effetti" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volume musica" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "OPZIONI AUDIO" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Ha effetto al riavvio del gioco" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Modalità Grafica*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "A finestra" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Risoluzione*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Dimensione della Texture" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Sincronia verticale" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "OPZIONI VIDEO" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Può avere effetti negativi sulla performance" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Inverti la rotazione" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Blocca il Cursore" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Cursori colorati*" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Inverti i tasti del mouse" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Ruota a Sinistra" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "OPZIONI DEL MOUSE" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Difficoltà" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Facile" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normale" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Difficile" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Velocità di Scorrimento" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Lingua" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Colore delle Unità" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Ruota a Destra" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "OPZIONI DI GIOCO" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod:" diff --git a/po/la.po b/po/la.po index cf2a04f4c..52133f932 100644 --- a/po/la.po +++ b/po/la.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-05-09 16:39+0000\n" "Last-Translator: Giel van Schijndel \n" "Language-Team: Latin\n" @@ -12729,350 +12729,364 @@ msgstr "" msgid "Hero" msgstr "Heros" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:1009 +#: src/frontend.c:1010 msgid "Rotate Screen" msgstr "" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Rotating" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" diff --git a/po/lt.po b/po/lt.po index a276f6ad5..976086bb5 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-05-09 16:42+0000\n" "Last-Translator: Roman \n" "Language-Team: Lithuanian \n" @@ -12701,352 +12701,367 @@ msgstr "" msgid "Hero" msgstr "" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "ŽaidÄ—jas" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "ŽaidÄ—jas" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Pakrauti iÅ¡saugotÄ… žaidimÄ…" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:1009 +#: src/frontend.c:1010 msgid "Rotate Screen" msgstr "" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Lotynų" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -14873,9 +14888,6 @@ msgstr "" #~ msgid "Russian" #~ msgstr "Rusų" -#~ msgid "Latin" -#~ msgstr "Lotynų" - #, fuzzy #~ msgid "Strategy Game" #~ msgstr "IÅ¡saugoti žaidimÄ…" diff --git a/po/nb.po b/po/nb.po index e5b58d223..53430ce62 100644 --- a/po/nb.po +++ b/po/nb.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-05-09 16:54+0000\n" "Last-Translator: Olav Andreas Lindekleiv \n" "Language-Team: none\n" @@ -12733,361 +12733,376 @@ msgstr "Spesiell" msgid "Hero" msgstr "Helt" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "Solospill" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "Samspill" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Introduksjon" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Alternativer" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Avslutt" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "HOVEDMENY" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "INTRODUKSJON" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "" -#: src/frontend.c:212 +#: src/frontend.c:213 #, fuzzy msgid "Start Skirmish Game" msgstr "Start med baser" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Last Spill" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "SOLOSPILL" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Last inn spill" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "SAMSPILL" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Bli med i spill" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ALTERNATIVER" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Spillalternativer" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Grafikkalternativer" -#: src/frontend.c:423 +#: src/frontend.c:424 #, fuzzy msgid "Video Options" msgstr "Lydalternativer" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Lydalternativer" -#: src/frontend.c:425 +#: src/frontend.c:426 #, fuzzy msgid "Mouse Options" msgstr "Spillalternativer" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "PÃ¥" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Av" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "TÃ¥ke" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "KrigstÃ¥ke" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Stemmevolum" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Lydeffektvolum" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Musikkvolum" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:768 +#: src/frontend.c:769 #, fuzzy msgid "Graphics Mode*" msgstr "Grafikkalternativer" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Spillalternativer" -#: src/frontend.c:1009 +#: src/frontend.c:1010 msgid "Rotate Screen" msgstr "" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Vanskelighetsgrad" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Enkel" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Tøff" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Latin" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "SPILLALTERNATIVER" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -14932,9 +14947,6 @@ msgstr "Version %s%s%s%s" #~ msgid "Russian" #~ msgstr "Russisk" -#~ msgid "Latin" -#~ msgstr "Latin" - #, fuzzy #~ msgid "Strategy Game" #~ msgstr "Lagre spill" diff --git a/po/nl.po b/po/nl.po index 2f729a7a0..9a0af96de 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2009-10-31 12:10+0100\n" "Last-Translator: \n" "Language-Team: Dutch \n" @@ -12906,357 +12906,372 @@ msgstr "Speciaal" msgid "Hero" msgstr "Held" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Een speler" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Meerdere spelers" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Oefenpotje" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Instellingen" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Bekijk intro" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Spel afsluiten" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "HOOFDMENU" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Snel spelen" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "OEFENPOTJES" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Terug" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nieuwe veldtocht" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Start schermutseling" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Spel laden" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "EEN SPELER" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Opgeslagen spel laden" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MEERDERE SPELERS" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Spel verzorgen" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Deelnemen aan spel" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPTIES" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Spelinstellingen" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Beeldinstellingen" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Video-instellingen" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Geluidsinstellingen" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Muisinstellingen" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Sneltoetsen" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Video afspelen" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1x" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2x" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Volledig scherm" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Scherm schudden" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Aan" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Uit" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Mist" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Nevel" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Oorlogsmist" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Ondertitels" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Schaduwen" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Stemvolume" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Effectenvolume" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Muziekvolume" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Gaat in na herstart" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Grafische modus*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Venster" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Resolutie*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Structuurgrootte" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Verticale synchr*" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 #, fuzzy msgid "Reverse Rotation" msgstr "Draai knoppen om" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Cursor opsluiten" -#: src/frontend.c:984 +#: src/frontend.c:985 #, fuzzy msgid "Colored Cursors*" msgstr "Gekleurde Muis wijzer *" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Verwissel Muis Knoppen" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Draai naar links" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Moeilijkheidsgraad" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Makkelijk" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normaal" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Moeilijk" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Scrollsnelheid" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Taal" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Speelkleur" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Draai naar rechts" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "SPELINSTELLINGEN" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" diff --git a/po/pl.po b/po/pl.po index 34e4db111..bb018ffef 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2010-05-28 10:43+0100\n" "Last-Translator: MichaÅ‚ D. aka Emdek \n" "Language-Team: Polish \n" @@ -12716,352 +12716,367 @@ msgstr "Specjalny" msgid "Hero" msgstr "Bohater" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Gra jednoosobowa" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Gra wieloosobowa" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Szkolenie" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Opcje" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Zobacz intro" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Wyjdź z gry" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "MENU GÅÓWNE" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Szybka rozgrywka" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "SZKOLENIA" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Powrót" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nowa kampania" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Rozpocznij potyczkÄ™" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Wyzwania" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "ZaÅ‚aduj grÄ™" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "JEDEN GRACZ" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "ZaÅ‚aduj zapisany stan gry" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "WIELU GRACZY" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Utwórz grÄ™" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "DoÅ‚Ä…cz do gry" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPCJE" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Ustawienia gry" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Opcje grafiki" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Ustawienia obrazu" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Ustawienia dźwiÄ™ku" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Ustawienia myszki" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Skróty klawiszowe" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Odtwarzanie filmów" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "PeÅ‚ny ekran" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "WstrzÄ…sy ekranu" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "WÅ‚Ä…cz" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "WyÅ‚Ä…cz" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "MgÅ‚a" # 'Mist' and 'Fog' has the same meaning in Polish -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "MgÅ‚a" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "MgÅ‚a wojny" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Napisy" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Cienie" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "USTAWIENIA GRAFIKI" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "GÅ‚oÅ›ność mowy" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "GÅ‚oÅ›ność efektów" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "GÅ‚oÅ›ność muzyki" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "USTAWIENIA DŹWIĘKU" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Wymaga restartu gry" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Tryb graficzny*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "W oknie" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Rozdzielczość*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Rozmiar tekstury" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Synchron. pionowa*" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "USTAWIENIA WIDEO" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Może zmniejszyć wydajność" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Odwróć rotacjÄ™" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "ZÅ‚ap kursor" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Kolorowe kursory*" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Odwróć przyciski" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Obrót w lewo" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "USTAWIENIA MYSZKI" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Poziom trudnoÅ›ci" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Åatwy" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normalny" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Trudny" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Szybkość przewijania" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "JÄ™zyk" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Kolor jednostek" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Obrót w prawo" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "USTAWIENIA GRY" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod: " diff --git a/po/pt.po b/po/pt.po index ce289ad7c..3294a6cf0 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2009-08-04 22:59+0100\n" "Last-Translator: Pedro Miguel Martins da Silva Caetano \n" "Language-Team: Portugese \n" @@ -12848,357 +12848,372 @@ msgstr "Especial" msgid "Hero" msgstr "Herói" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Um Jogador" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Multijogador" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Tutorial" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Opções" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Ver a Intro" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Sair do Jogo" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "MENU PRINCIPAL" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Jogo Rápido" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "TUTORIAIS" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Anterior" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nova Campanha" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Iniciar jogo de Escaramuça" -#: src/frontend.c:213 +#: src/frontend.c:214 #, fuzzy msgid "Challenges" msgstr "Saqueadores" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Carregar Jogo" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "UM JOGADOR" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Carregar Jogo Gravado" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MULTIJOGADOR" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Criar Server" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Juntar-se a Jogo" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPÇÕES" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Opções de Jogo" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Opções de Gráficos" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Opções de Vídeo" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Opções de Ãudio" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Opções de Rato" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Definir teclas" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Playback do Vídeo" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Ecrã Inteiro" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Abanar Ecrã" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Ligado" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Desligado" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Nevoeiro" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Nevoeiro" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Nevoeiro de guerra" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Legendas" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Sombras" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volume de Voz" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volume dos Efeitos" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volume da Música" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Tem efeito quando o jogo for reiniciado" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Modo de Gráficos" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Em Janela" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Resolução" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Tamanho das Texturas" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Vertical sync*" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Pode afectar negativamente a performance" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Rotação Invertida" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Restringir Cursor" -#: src/frontend.c:984 +#: src/frontend.c:985 #, fuzzy msgid "Colored Cursors*" msgstr "Cursores Coloridos *" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Trocar Botões do Rato" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Inclinar para trás" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Dificuldade" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Fácil" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Normal" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Difícil" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Velocidade de Scroll" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Língua" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Cor das Unidades" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Rodar para a direita" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index c1e7b013d..2e4075680 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2010-05-08 00:46-0300\n" "Last-Translator: Artur Filipe \n" "Language-Team: Brazilian Portugese \n" @@ -12689,351 +12689,366 @@ msgstr "Força Especial" msgid "Hero" msgstr "Herói" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Campanha (Um Jogador)" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Jogo Multiplayer" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Aprendendo a Jogar" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Opções" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Ver Introdução" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Sair do Jogo" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "MENU PRINCIPAL" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Início Rápido" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "APRENDENDO A JOGAR" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Voltar" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nova Campanha" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Iniciar Jogo vs. Computador" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Desafios" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Carregar Jogo" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "UM JOGADOR" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Carregar Jogo Salvo" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MULTIPLAYER" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Hospedar Jogo" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Conectar-se a um jogo" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "OPÇÕES" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Opções de Jogo" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Opções de Vídeo" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Opções de Vídeo" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Opções de Ãudio" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Opções de Mouse" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Configuração das Teclas" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Tamanho de Vídeo" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Tela Cheia" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Tremer a Tela" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Ligado" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Desligado" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Nevoeiro" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Misto" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Nevoeiro da Guerra" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Legendas" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Sombras" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "OPÇÕES DE GRÃFICOS" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Volume da Voz" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "Volume dos Sons" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Volume da Música" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "OPÇÕES DE ÃUDIO" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Precisa reiniciar o jogo" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Modo Gráfico*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Em Janela" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Resolução*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Tamanho da Textura" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "V-Sync*" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "OPÇÕES DE VÃDEO" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Pode afetar a performance" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Reverter Rotação" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Travar Cursor" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Cursores Coloridos *" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "Inverter Botões do Mouse" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Girar a visão para a esquerda" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "OPÇÕES DE MOUSE" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Dificuldade" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Fácil" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Média" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Difícil" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Velocidade da Tela" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Idioma" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Cor das Unidades" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Girar a visão para a direita" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "OPÇÕES DE JOGO" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Mod:" diff --git a/po/ro.po b/po/ro.po index cb50195ed..a827e7ad3 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2008-04-30 20:40+0000\n" "Last-Translator: Bogdan Ivanov \n" "Language-Team: Romanian \n" @@ -12696,352 +12696,367 @@ msgstr "" msgid "Hero" msgstr "" -#: src/frontend.c:96 +#: src/frontend.c:97 #, fuzzy msgid "Single Player" msgstr "Jucător" -#: src/frontend.c:97 +#: src/frontend.c:98 #, fuzzy msgid "Multi Player" msgstr "Jucător" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:1009 +#: src/frontend.c:1010 msgid "Rotate Screen" msgstr "" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Latină" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -14859,9 +14874,6 @@ msgstr "" #~ msgid "Russian" #~ msgstr "Rusă" -#~ msgid "Latin" -#~ msgstr "Latină" - #~ msgid "English" #~ msgstr "Engleză" diff --git a/po/ru.po b/po/ru.po index a60588ed6..ed09d4b0c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2010-06-10 02:04+0300\n" "Last-Translator: Filipp Chertiev \n" "Language-Team: Russian <>\n" @@ -12710,351 +12710,366 @@ msgstr "СпециалиÑÑ‚" msgid "Hero" msgstr "Герой" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Один игрок" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "МногопользовательÑÐºÐ°Ñ Ð¸Ð³Ñ€Ð°" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "Обучение" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Параметры" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Показать Ð’Ñтупление" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Выйти из игры" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "ГЛÐÐ’ÐОЕ МЕÐЮ" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "БыÑÑ‚Ñ€Ð°Ñ Ð¸Ð³Ñ€Ð°" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "ОБУЧЕÐИЕ" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Ðазад" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "ÐÐ¾Ð²Ð°Ñ ÐºÐ°Ð¼Ð¿Ð°Ð½Ð¸Ñ" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Ðачать Сражение" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Вызов на поединок" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Загрузить игру" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "ОДИÐОЧÐÐЯ ИГРÐ" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Загрузить Игру" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "МУЛЬТИПЛЕЕР" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Создать игру" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "ПриÑоединитьÑÑ" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ПÐРÐМЕТРЫ" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "ÐаÑтройки игры" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "ÐаÑтройки графики" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "ÐаÑтройки видео" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "ÐаÑтройки звука" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "ÐаÑтройки Мыши" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "РаÑÑкладка клавиатуры" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "ВоÑпроизведение видео" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1Ð¥" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Полный Ñкран" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Дрожание Ñкрана" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Вкл." -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Выкл." -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Туман" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Мгла" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Туман войны" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Субтитры" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Тени" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "ÐаÑтройки графики" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "ГромкоÑÑ‚ÑŒ голоÑа" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "ГромкоÑÑ‚ÑŒ Ñффектов" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "ГромкоÑÑ‚ÑŒ музыкы" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "ÐаÑтройки аудио" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* ПрименитÑÑ Ð¿Ð¾Ñле перезагрузки игры" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "ГрафичеÑкий режим*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Ð’ окне" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Разрешение*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Размер текÑтур" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Ð’ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»ÑŒÐ½Ð°Ñ ÑинхронизациÑ*" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "ÐаÑтройки видео" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Может Ñнизить производительноÑÑ‚ÑŒ" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "ИнверÑÐ¸Ñ Ð¼Ñ‹ÑˆÐ¸" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Захват курÑора" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Цветные курÑоры *" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "ÐаÑтройки Мыши" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Повернуть влево" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "ÐаÑтройки мыши" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "СложноÑÑ‚ÑŒ" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "ЛегкаÑ" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "ÐормальнаÑ" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "ТÑжелаÑ" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "СкороÑÑ‚ÑŒ прокрутки" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Язык" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Цвет юнита" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Повернуть вправо" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "ÐÐСТРОЙКИ ИГРЫ" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "Мод:" diff --git a/po/sl.po b/po/sl.po index e9b7a549b..174846336 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2009-06-10 14:43+0100\n" "Last-Translator: Tomaž PovÅ¡in \n" "Language-Team: Slovenian \n" @@ -12842,358 +12842,373 @@ msgstr "Poseben" msgid "Hero" msgstr "Junak" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "En igralec" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "VeÄ igralcev" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "UÄna vaja" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Možnosti" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Oglej si zaÄetni film" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "KonÄaj igro" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "GLAVNI MENI" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Hitra igra" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "UÄŒNE VAJE" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "Nazaj" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Nov bojni pohod" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "ZaÄni spopad" -#: src/frontend.c:213 +#: src/frontend.c:214 #, fuzzy msgid "Challenges" msgstr "Plenilec" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Naloži igro" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "EN IGRALEC" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Naloži shranjeno igro" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "VEÄŒ IGRALCEV" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Gostite igro" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "Pridružite se igri" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "MOŽNOSTI" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Možnosti igre" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "GrafiÄne možnosti" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Video možnosti" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "ZvoÄne možnosti" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Možnosti miÅ¡ke" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "Vnosi tipk" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "Igranje posnetkov" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Cel zaslon" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "Tresenje zaslona" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Vklopljeno" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Izklopljeno" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Megla" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Meglica" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Megla vojne" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Podnapisi" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Sence" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "Glasovi" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "UÄinki" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "Glasba" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* ZaÄne delovati po ponovnem zagonu" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "GrafiÄni naÄin*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Okensko" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "LoÄljivost*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Velikost tekstur" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Vertkalna sinh*" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 #, fuzzy msgid "Reverse Rotation" msgstr "Obrnjena miÅ¡ka" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "Ujemi kazalec" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 #, fuzzy msgid "Switch Mouse Buttons" msgstr "Možnosti miÅ¡ke" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Zavrti levo" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "Težavnost" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Lahka" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "ObiÄajna" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Težka" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "Hitrost pomikanja" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Jezik" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Barva enot" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Zavrti desno" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "MOŽNOSTI IGRE" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" diff --git a/po/uk_UA.po b/po/uk_UA.po index 4c4403423..bee239e2a 100644 --- a/po/uk_UA.po +++ b/po/uk_UA.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Warzone 2100 version 2.2.3\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: \n" "Last-Translator: Меденцій ОлекÑандр \n" "Language-Team: \n" @@ -12715,351 +12715,366 @@ msgstr "ОÑобливий" msgid "Hero" msgstr "Герой" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "Один Гравець" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "Кілька Гравців" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "ÐавчаннÑ" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "Опції" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "Показати ЗаÑтавку" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "Вийти з Гри" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "ГОЛОВÐЕ МЕÐЮ" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "Швидка Гра" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "ÐÐВЧÐÐÐЯ" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "ПовернутиÑÑŒ" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "Ðова КампаніÑ" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "Почати Одиночну Гру" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "Виклики" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "Завнтажити Гру" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "РЕЖИМ ОДÐОГО ГРÐВЦЯ" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "Завантажити Збережену Гру" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "РЕЖИМ КІЛЬКОХ ГРÐВЦІВ" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "Створити Гру" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "ПриєднатиÑÑŒ до Гри" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "ОПЦІЇ" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "Ігрові Опції" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "Опції Графіки" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "Опції Відео" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "Опції Звуку" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "Опції Мишки" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "ÐŸÑ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐšÐ»Ð°Ð²Ñ–Ñˆ" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "ÐŸÑ€Ð¾Ð³Ñ€Ð°Ð²Ð°Ð½Ð½Ñ Ð’Ñ–Ð´ÐµÐ¾" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1X" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2X" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "Повний Екран" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "ТрÑÑÑ–Ð½Ð½Ñ Ð•ÐºÑ€Ð°Ð½Ñƒ" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "Ввімкнено" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "Вимкнено" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "Туман" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "Імла" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "Туман Війни" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "Субтитри" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "Тіні" -#: src/frontend.c:557 +#: src/frontend.c:558 msgid "GRAPHICS OPTIONS" msgstr "ОПЦІЇ ГРÐФІКИ" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "ГучніÑÑ‚ÑŒ Звуку" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "ГучніÑÑ‚ÑŒ Ефектів" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "ГучніÑÑ‚ÑŒ Музики" -#: src/frontend.c:700 +#: src/frontend.c:701 msgid "AUDIO OPTIONS" msgstr "ОПЦІЇ ЗВУКУ" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* Зміни вÑупають в Ñилу піÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð³Ñ€Ð¸" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "Режим Графіки*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "Віконний Режим" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "Роздільна ЗдатніÑÑ‚ÑŒ*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "Розмір ТекÑтур" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "Вертикальна СинхронізаціÑ*" -#: src/frontend.c:801 +#: src/frontend.c:802 msgid "VIDEO OPTIONS" msgstr "ОПЦІЇ ВІДЕО" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "* Може негативно вплинути на роботу" -#: src/frontend.c:961 +#: src/frontend.c:962 msgid "Reverse Rotation" msgstr "Зворотнє ОбертаннÑ" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "ЗафікÑувати КурÑор" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "Кольорові КурÑори*" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "ПомінÑти ÐŸÑ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐšÐ½Ð¾Ð¿Ð¾Ðº Миші" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "Повернути Ліворуч" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 msgid "MOUSE OPTIONS" msgstr "ОПЦІЇ МИШКИ" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "ВажкіÑÑ‚ÑŒ" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "Легко" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "Ðормально" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "Важко" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "ШвидкіÑÑ‚ÑŒ Прокрутки" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "Мова" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "Колір Підрозділів" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "Повернути Праворуч" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "ІГРОВІ ОПЦІЇ" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr ", моди: " diff --git a/po/zh_CN.po b/po/zh_CN.po index d0038e178..f1e1bc321 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2009-05-13 16:12+0800\n" "Last-Translator: Terra \n" "Language-Team: Simplified Chinese \n" @@ -12837,357 +12837,372 @@ msgstr "特ç§éƒ¨é˜Ÿ" msgid "Hero" msgstr "英雄部队" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "å•äººæ¸¸æˆ" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "多人游æˆ" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "游æˆæ•™ç¨‹" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "选项设置" -#: src/frontend.c:100 +#: src/frontend.c:101 #, fuzzy msgid "View Intro" msgstr "查看下一个工程车" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "退出游æˆ" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "主èœå•" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "快速开始" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "游æˆæ•™ç¨‹" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "返回" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "新的战役" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "人机对战" -#: src/frontend.c:213 +#: src/frontend.c:214 msgid "Challenges" msgstr "" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "载入游æˆ" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "å•äººæ¸¸æˆ" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "载入游æˆ" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "多人游æˆ" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "建立游æˆ" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "加入游æˆ" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "选项" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "图形选项" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "视频选项" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "音频选项" -#: src/frontend.c:425 +#: src/frontend.c:426 #, fuzzy msgid "Mouse Options" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "按键设置" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "视频回放" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "å…¨å±æ˜¾ç¤º" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "å±å¹•éœ‡åŠ¨" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "å¼€" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "å…³" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "迷雾" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "薄雾(å¯ä»¥çœ‹è§åœ°å½¢ï¼‰" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "战争迷雾" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "字幕" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "阴影" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "语音音é‡" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "声效音é‡" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "音ä¹éŸ³é‡" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "* é‡å¯æ¸¸æˆåŽç”Ÿæ•ˆ" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "图形模å¼*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "窗å£" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "å±å¹•åˆ†è¾¨çŽ‡*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "è´¨æ尺寸" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 #, fuzzy msgid "Reverse Rotation" msgstr "翻转鼠标" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "" -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 msgid "Switch Mouse Buttons" msgstr "" -#: src/frontend.c:1009 +#: src/frontend.c:1010 msgid "Rotate Screen" msgstr "" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "游æˆéš¾åº¦" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "容易" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "正常" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "å›°éš¾" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "å±å¹•å·åŠ¨é€Ÿåº¦" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "语言" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "å•ä½é¢œè‰²" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "拉ä¸è¯­" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "游æˆé€‰é¡¹" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" @@ -15027,9 +15042,6 @@ msgstr "" #~ msgid "Russian" #~ msgstr "俄语" -#~ msgid "Latin" -#~ msgstr "拉ä¸è¯­" - #, fuzzy #~ msgid "Strategy Game" #~ msgstr "ä¿å­˜æ¸¸æˆ" diff --git a/po/zh_TW.po b/po/zh_TW.po index bfa7091d5..bc69388d1 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: warzone2100\n" "Report-Msgid-Bugs-To: warzone-dev@gna.org\n" -"POT-Creation-Date: 2010-07-24 01:26+0200\n" +"POT-Creation-Date: 2010-07-25 17:24+0200\n" "PO-Revision-Date: 2009-05-11 00:21+0800\n" "Last-Translator: \n" "Language-Team: zh_TW\n" @@ -12884,358 +12884,373 @@ msgstr "特務" msgid "Hero" msgstr "英雄" -#: src/frontend.c:96 +#: src/frontend.c:97 msgid "Single Player" msgstr "單人éŠæˆ²" -#: src/frontend.c:97 +#: src/frontend.c:98 msgid "Multi Player" msgstr "多人éŠæˆ²" -#: src/frontend.c:98 -#: src/frontend.c:154 +#: src/frontend.c:99 +#: src/frontend.c:155 msgid "Tutorial" msgstr "教學模å¼" -#: src/frontend.c:99 +#: src/frontend.c:100 msgid "Options" msgstr "é¸é …" -#: src/frontend.c:100 +#: src/frontend.c:101 msgid "View Intro" msgstr "影片介紹" -#: src/frontend.c:102 +#: src/frontend.c:103 msgid "Quit Game" msgstr "離開éŠæˆ²" -#: src/frontend.c:104 +#: src/frontend.c:105 msgid "MAIN MENU" msgstr "主é¸å–®" -#: src/frontend.c:155 +#: src/frontend.c:156 msgid "Fast Play" msgstr "馬上玩ï¼" -#: src/frontend.c:156 +#: src/frontend.c:157 msgid "TUTORIALS" msgstr "教學模å¼" #. TRANSLATORS: "Return", in this context, means "return to previous screen/menu" -#: src/frontend.c:158 -#: src/frontend.c:217 -#: src/frontend.c:360 -#: src/frontend.c:427 -#: src/frontend.c:561 -#: src/frontend.c:697 -#: src/frontend.c:804 -#: src/frontend.c:1023 -#: src/frontend.c:1180 +#: src/frontend.c:159 +#: src/frontend.c:218 +#: src/frontend.c:361 +#: src/frontend.c:428 +#: src/frontend.c:562 +#: src/frontend.c:698 +#: src/frontend.c:805 +#: src/frontend.c:1024 +#: src/frontend.c:1185 msgctxt "menu" msgid "Return" msgstr "返回" -#: src/frontend.c:211 +#: src/frontend.c:212 msgid "New Campaign" msgstr "新的任務" -#: src/frontend.c:212 +#: src/frontend.c:213 msgid "Start Skirmish Game" msgstr "單人戰役模å¼" -#: src/frontend.c:213 +#: src/frontend.c:214 #, fuzzy msgid "Challenges" msgstr "拾è’者" -#: src/frontend.c:214 +#: src/frontend.c:215 #: src/ingameop.c:293 msgid "Load Game" msgstr "載入éŠæˆ²" -#: src/frontend.c:216 +#: src/frontend.c:217 msgid "SINGLE PLAYER" msgstr "SINGLE PLAYER" -#: src/frontend.c:301 +#: src/frontend.c:302 #: src/ingameop.c:519 #: src/mission.c:2534 #: src/mission.c:2639 msgid "Load Saved Game" msgstr "載入已儲存的éŠæˆ²" -#: src/frontend.c:355 +#: src/frontend.c:356 msgid "MULTI PLAYER" msgstr "MULTIPLAYER" -#: src/frontend.c:357 +#: src/frontend.c:358 msgid "Host Game" msgstr "é–‹å•ŸéŠæˆ²" -#: src/frontend.c:358 +#: src/frontend.c:359 msgid "Join Game" msgstr "加入éŠæˆ²" -#: src/frontend.c:420 +#: src/frontend.c:421 #: src/multiint.c:1136 msgid "OPTIONS" msgstr "é¸é …" -#: src/frontend.c:421 +#: src/frontend.c:422 msgid "Game Options" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:422 +#: src/frontend.c:423 msgid "Graphics Options" msgstr "圖形é¸é …" -#: src/frontend.c:423 +#: src/frontend.c:424 msgid "Video Options" msgstr "顯示é¸é …" -#: src/frontend.c:424 +#: src/frontend.c:425 #: src/ingameop.c:288 msgid "Audio Options" msgstr "音效é¸é …" -#: src/frontend.c:425 +#: src/frontend.c:426 msgid "Mouse Options" msgstr "滑鼠é¸é …" -#: src/frontend.c:426 +#: src/frontend.c:427 msgid "Key Mappings" msgstr "éµç›¤é…ç½®" -#: src/frontend.c:488 +#: src/frontend.c:489 msgid "Video Playback" msgstr "播放影片" -#: src/frontend.c:492 -#: src/frontend.c:651 +#: src/frontend.c:493 +#: src/frontend.c:652 msgid "1X" msgstr "1å€å¤§å°" -#: src/frontend.c:496 -#: src/frontend.c:641 +#: src/frontend.c:497 +#: src/frontend.c:642 msgid "2X" msgstr "2å€å¤§å°" -#: src/frontend.c:500 -#: src/frontend.c:646 -#: src/frontend.c:772 -#: src/frontend.c:826 +#: src/frontend.c:501 +#: src/frontend.c:647 +#: src/frontend.c:773 +#: src/frontend.c:827 msgid "Fullscreen" msgstr "全螢幕" -#: src/frontend.c:510 +#: src/frontend.c:511 msgid "Screen Shake" msgstr "震動螢幕" -#: src/frontend.c:513 -#: src/frontend.c:541 -#: src/frontend.c:549 -#: src/frontend.c:584 -#: src/frontend.c:618 -#: src/frontend.c:627 -#: src/frontend.c:793 -#: src/frontend.c:887 -#: src/frontend.c:925 -#: src/frontend.c:964 -#: src/frontend.c:976 -#: src/frontend.c:988 -#: src/frontend.c:1000 -#: src/frontend.c:1045 -#: src/frontend.c:1058 -#: src/frontend.c:1072 -#: src/frontend.c:1086 +#: src/frontend.c:514 +#: src/frontend.c:542 +#: src/frontend.c:550 +#: src/frontend.c:585 +#: src/frontend.c:619 +#: src/frontend.c:628 +#: src/frontend.c:794 +#: src/frontend.c:888 +#: src/frontend.c:926 +#: src/frontend.c:965 +#: src/frontend.c:977 +#: src/frontend.c:989 +#: src/frontend.c:1001 +#: src/frontend.c:1046 +#: src/frontend.c:1059 +#: src/frontend.c:1073 +#: src/frontend.c:1087 msgid "On" msgstr "é–‹å•Ÿ" -#: src/frontend.c:517 -#: src/frontend.c:537 -#: src/frontend.c:553 -#: src/frontend.c:579 -#: src/frontend.c:613 -#: src/frontend.c:631 -#: src/frontend.c:797 -#: src/frontend.c:882 -#: src/frontend.c:920 -#: src/frontend.c:968 -#: src/frontend.c:980 -#: src/frontend.c:992 -#: src/frontend.c:1004 -#: src/frontend.c:1040 -#: src/frontend.c:1053 -#: src/frontend.c:1067 -#: src/frontend.c:1081 +#: src/frontend.c:518 +#: src/frontend.c:538 +#: src/frontend.c:554 +#: src/frontend.c:580 +#: src/frontend.c:614 +#: src/frontend.c:632 +#: src/frontend.c:798 +#: src/frontend.c:883 +#: src/frontend.c:921 +#: src/frontend.c:969 +#: src/frontend.c:981 +#: src/frontend.c:993 +#: src/frontend.c:1005 +#: src/frontend.c:1041 +#: src/frontend.c:1054 +#: src/frontend.c:1068 +#: src/frontend.c:1082 msgid "Off" msgstr "關閉" -#: src/frontend.c:522 +#: src/frontend.c:523 #: src/multiint.c:1205 msgid "Fog" msgstr "迷霧" -#: src/frontend.c:525 -#: src/frontend.c:600 +#: src/frontend.c:526 +#: src/frontend.c:601 msgid "Mist" msgstr "迷霧" -#: src/frontend.c:529 -#: src/frontend.c:594 +#: src/frontend.c:530 +#: src/frontend.c:595 #: src/multiint.c:1207 msgid "Fog Of War" msgstr "完全迷霧" -#: src/frontend.c:534 +#: src/frontend.c:535 msgid "Subtitles" msgstr "字幕" -#: src/frontend.c:546 +#: src/frontend.c:547 msgid "Shadows" msgstr "å½±å­" -#: src/frontend.c:557 +#: src/frontend.c:558 #, fuzzy msgid "GRAPHICS OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:685 +#: src/frontend.c:686 #: src/ingameop.c:177 msgid "Voice Volume" msgstr "語音音é‡" -#: src/frontend.c:689 +#: src/frontend.c:690 #: src/ingameop.c:182 msgid "FX Volume" msgstr "音效音é‡" -#: src/frontend.c:693 +#: src/frontend.c:694 #: src/ingameop.c:187 msgid "Music Volume" msgstr "背景音樂音é‡" -#: src/frontend.c:700 +#: src/frontend.c:701 #, fuzzy msgid "AUDIO OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:765 +#: src/frontend.c:766 msgid "* Takes effect on game restart" msgstr "*é‡å•ŸéŠæˆ²å¾Œç”Ÿæ•ˆ" -#: src/frontend.c:768 +#: src/frontend.c:769 msgid "Graphics Mode*" msgstr "圖形模å¼*" -#: src/frontend.c:776 -#: src/frontend.c:821 +#: src/frontend.c:777 +#: src/frontend.c:822 msgid "Windowed" msgstr "視窗模å¼" -#: src/frontend.c:780 +#: src/frontend.c:781 msgid "Resolution*" msgstr "解æžåº¦*" -#: src/frontend.c:785 +#: src/frontend.c:786 msgid "Texture size" msgstr "貼圖精細度" -#: src/frontend.c:789 +#: src/frontend.c:790 msgid "Vertical sync*" msgstr "åž‚ç›´åŒæ­¥*" -#: src/frontend.c:801 +#: src/frontend.c:802 #, fuzzy msgid "VIDEO OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:957 +#: src/frontend.c:958 msgid "* May negatively affect performance" msgstr "" -#: src/frontend.c:961 +#: src/frontend.c:962 #, fuzzy msgid "Reverse Rotation" msgstr "åå‘滑鼠" -#: src/frontend.c:972 +#: src/frontend.c:973 msgid "Trap Cursor" msgstr "æ•æ‰æ»‘é¼ " -#: src/frontend.c:984 +#: src/frontend.c:985 msgid "Colored Cursors*" msgstr "" -#: src/frontend.c:997 +#: src/frontend.c:998 #, fuzzy msgid "Switch Mouse Buttons" msgstr "滑鼠é¸é …" -#: src/frontend.c:1009 +#: src/frontend.c:1010 #, fuzzy msgid "Rotate Screen" msgstr "å‘左旋轉" -#: src/frontend.c:1012 -#: src/frontend.c:1100 +#: src/frontend.c:1013 +#: src/frontend.c:1101 msgid "Middle Mouse" msgstr "" -#: src/frontend.c:1016 -#: src/frontend.c:1095 +#: src/frontend.c:1017 +#: src/frontend.c:1096 msgid "Right Mouse" msgstr "" -#: src/frontend.c:1020 +#: src/frontend.c:1021 #, fuzzy msgid "MOUSE OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:1135 -#: src/frontend.c:1201 +#: src/frontend.c:1136 +#: src/frontend.c:1206 msgid "Difficulty" msgstr "難度" -#: src/frontend.c:1139 -#: src/frontend.c:1209 -#: src/frontend.c:1240 +#: src/frontend.c:1140 +#: src/frontend.c:1214 +#: src/frontend.c:1251 msgid "Easy" msgstr "容易" -#: src/frontend.c:1142 -#: src/frontend.c:1212 -#: src/frontend.c:1232 +#: src/frontend.c:1143 +#: src/frontend.c:1217 +#: src/frontend.c:1243 msgid "Normal" msgstr "普通" -#: src/frontend.c:1146 -#: src/frontend.c:1215 -#: src/frontend.c:1236 +#: src/frontend.c:1147 +#: src/frontend.c:1220 +#: src/frontend.c:1247 msgid "Hard" msgstr "困難" -#: src/frontend.c:1151 -#: src/frontend.c:1202 +#: src/frontend.c:1152 +#: src/frontend.c:1207 msgid "Scroll Speed" msgstr "æ²å‹•é€Ÿåº¦" -#: src/frontend.c:1165 -#: src/frontend.c:1199 +#: src/frontend.c:1166 +#: src/frontend.c:1204 msgid "Language" msgstr "語言" -#: src/frontend.c:1177 -#: src/frontend.c:1200 +#: src/frontend.c:1178 +#: src/frontend.c:1205 msgid "Unit Colour" msgstr "å–®ä½é¡è‰²" -#: src/frontend.c:1183 -#: src/frontend.c:1203 +#: src/frontend.c:1181 +msgid "Radar" +msgstr "" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +#, fuzzy +msgid "Rotating" +msgstr "å‘å³æ—‹è½‰" + +#: src/frontend.c:1182 +#: src/frontend.c:1231 +msgid "Fixed" +msgstr "" + +#: src/frontend.c:1188 +#: src/frontend.c:1208 msgid "GAME OPTIONS" msgstr "éŠæˆ²é¸é …" -#: src/frontend.c:1329 +#: src/frontend.c:1340 #: src/multiint.c:2117 msgid "Mod: " msgstr "" From e4cf2297b9817e295e11fcdfc7e89a9914463a4d Mon Sep 17 00:00:00 2001 From: Per Inge Mathisen Date: Sun, 25 Jul 2010 19:00:10 +0000 Subject: [PATCH 17/24] Stop falsely advertising ctrl+l as an available key combo. It is not. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11291 4a71c877-e1ca-e34f-864e-861f7616d084 --- src/keymap.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/keymap.c b/src/keymap.c index e3fa3725a..9ad12bf26 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -434,11 +434,10 @@ void keyInitMappings( BOOL bForceDefaults ) keyAddMapping(KEYMAP_ASSIGNABLE,KEY_IGNORE,(KEY_CODE)KEY_MAXSCAN,KEYMAP_PRESSED,kf_SelectNextCyborgFactory,_("Select next Cyborg Factory")); keyAddMapping(KEYMAP_ASSIGNABLE,KEY_IGNORE,(KEY_CODE)KEY_MAXSCAN,KEYMAP_PRESSED,kf_ToggleReopenBuildMenu,_("Toggle reopening the build menu")); - // NOTE THIS!!!!!!! - // available: ctrl+l + // Debug options + keyAddMapping(KEYMAP___HIDE,KEY_LSHIFT,KEY_BACKSPACE,KEYMAP_PRESSED,kf_ToggleDebugMappings, "TOGGLE Debug Mappings"); keyAddMapping(KEYMAP__DEBUG,KEY_LCTRL,KEY_M,KEYMAP_PRESSED,kf_ToggleShowPath, "Toggle display of droid path"); keyAddMapping(KEYMAP__DEBUG,KEY_LCTRL,KEY_E,KEYMAP_PRESSED,kf_ToggleShowGateways, "Toggle display of gateways"); - keyAddMapping(KEYMAP___HIDE,KEY_LSHIFT,KEY_BACKSPACE,KEYMAP_PRESSED,kf_ToggleDebugMappings, "TOGGLE Debug Mappings"); keyAddMapping(KEYMAP__DEBUG,KEY_IGNORE,KEY_M,KEYMAP_PRESSED,kf_ShowMappings, "Show all keyboard mappings - use pause!"); keyAddMapping(KEYMAP__DEBUG,KEY_IGNORE,KEY_V,KEYMAP_PRESSED,kf_ToggleVisibility, "Toggle visibility"); keyAddMapping(KEYMAP__DEBUG,KEY_IGNORE,KEY_W,KEYMAP_DOWN,kf_RaiseTile, "Raise tile height"); @@ -449,8 +448,6 @@ void keyInitMappings( BOOL bForceDefaults ) keyAddMapping(KEYMAP__DEBUG,KEY_LCTRL,KEY_Q,KEYMAP_PRESSED,kf_ToggleWeather, "Trigger some weather"); keyAddMapping(KEYMAP__DEBUG,KEY_IGNORE,KEY_K,KEYMAP_PRESSED,kf_TriFlip, "Flip terrain triangle"); keyAddMapping(KEYMAP__DEBUG,KEY_LCTRL,KEY_K,KEYMAP_PRESSED,kf_MapCheck, "Realign height of all objects on the map"); - - //These ones are necessary for debugging keyAddMapping(KEYMAP__DEBUG,KEY_LALT,KEY_A,KEYMAP_PRESSED,kf_AllAvailable, "Make all items available"); keyAddMapping(KEYMAP__DEBUG,KEY_LALT,KEY_K,KEYMAP_PRESSED,kf_KillSelected, "Kill Selected Unit(s)"); keyAddMapping(KEYMAP__DEBUG,KEY_LCTRL,KEY_G,KEYMAP_PRESSED,kf_ToggleGodMode, "Toggle god Mode Status"); @@ -459,6 +456,7 @@ void keyInitMappings( BOOL bForceDefaults ) keyAddMapping(KEYMAP__DEBUG,KEY_LSHIFT,KEY_W,KEYMAP_PRESSED,kf_ToggleWatchWindow, "Toggle watch window"); keyAddMapping(KEYMAP__DEBUG,KEY_LCTRL,KEY_L,KEYMAP_PRESSED,kf_TraceObject, "Trace a game object"); keyAddMapping(KEYMAP__DEBUG,KEY_LSHIFT,KEY_D,KEYMAP_PRESSED,kf_ToggleDrivingMode, "Toggle Driving Mode"); + saveKeyMap(); // save out the default key mappings. // ------------------------ OLD STUFF - Store here! From d1343e4a7db47e967428af2110b5a06c17c6ea38 Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Mon, 26 Jul 2010 23:25:08 +0000 Subject: [PATCH 18/24] Prevent automake.sh from complaining about astartest. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11296 4a71c877-e1ca-e34f-864e-861f7616d084 --- tests/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 461c081b8..e166d70ea 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -8,8 +8,8 @@ check_PROGRAMS = \ maptest \ pointtreetest -astartest_SOURCES = astartest.c ../lib/framework/debug.c -astartest_LDADD = $(SDL_LIBS) +#astartest_SOURCES = astartest.c ../lib/framework/debug.c +#astartest_LDADD = $(SDL_LIBS) maptest_SOURCES = ../tools/map/mapload.c maptest.c noinst_HEADERS = ../tools/map/mapload.h From edb644a03bf9ff5b6e4e478b30cbb66ea26b15b4 Mon Sep 17 00:00:00 2001 From: Buginator Date: Mon, 26 Jul 2010 23:36:29 +0000 Subject: [PATCH 19/24] Fix (and add missing) headers to files. 2009 Warzone Resurrection Project -> 2010 Warzone 2100 Project git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11298 4a71c877-e1ca-e34f-864e-861f7616d084 --- build_tools/autorevision/autorevision.cpp | 2 +- lib/betawidget/src/button.c | 2 +- lib/betawidget/src/button.h | 2 +- lib/betawidget/src/clipboard.h | 2 +- lib/betawidget/src/font.c | 2 +- lib/betawidget/src/font.h | 2 +- lib/betawidget/src/geom.c | 2 +- lib/betawidget/src/geom.h | 2 +- lib/betawidget/src/hBox.c | 2 +- lib/betawidget/src/hBox.h | 2 +- lib/betawidget/src/imageButton.c | 2 +- lib/betawidget/src/imageButton.h | 2 +- lib/betawidget/src/internal-cairo.h | 2 +- lib/betawidget/src/keycode.h | 2 +- lib/betawidget/src/lua-wrap.h | 19 +++++++++++++ lib/betawidget/src/patternManager.c | 2 +- lib/betawidget/src/patternManager.h | 2 +- .../src/platform/sdl/clipboardWin32.c | 2 +- .../src/platform/sdl/clipboardX11.c | 2 +- lib/betawidget/src/platform/sdl/event.c | 2 +- lib/betawidget/src/platform/sdl/event.h | 2 +- lib/betawidget/src/platform/sdl/init.c | 2 +- lib/betawidget/src/platform/sdl/init.h | 2 +- lib/betawidget/src/platform/sdl/time.c | 2 +- lib/betawidget/src/spacer.c | 2 +- lib/betawidget/src/spacer.h | 2 +- lib/betawidget/src/svgManager.c | 2 +- lib/betawidget/src/svgManager.h | 2 +- lib/betawidget/src/table.c | 2 +- lib/betawidget/src/table.h | 2 +- lib/betawidget/src/textEntry.c | 19 +++++++++++++ lib/betawidget/src/textEntry.h | 19 +++++++++++++ lib/betawidget/src/vector.c | 2 +- lib/betawidget/src/vector.h | 2 +- lib/betawidget/src/widget.c | 2 +- lib/betawidget/src/widget.h | 2 +- lib/betawidget/src/window.c | 2 +- lib/betawidget/src/window.h | 2 +- lib/betawidget/tools/sdl-testapp.c | 2 +- lib/exceptionhandler/dumpinfo.cpp | 2 +- lib/exceptionhandler/dumpinfo.h | 2 +- lib/exceptionhandler/exceptionhandler.c | 2 +- lib/exceptionhandler/exceptionhandler.h | 2 +- lib/exceptionhandler/exchndl.c | 2 +- lib/exceptionhandler/exchndl.h | 2 +- lib/framework/configfile.c | 2 +- lib/framework/configfile.h | 2 +- lib/framework/crc.cpp | 19 +++++++++++++ lib/framework/crc.h | 19 +++++++++++++ lib/framework/cursors.c | 2 +- lib/framework/cursors.h | 2 +- lib/framework/cursors16.c | 2 +- lib/framework/cursors32.c | 2 +- lib/framework/debug.c | 2 +- lib/framework/debug.h | 2 +- lib/framework/endian_hack.h | 2 +- lib/framework/file.h | 2 +- lib/framework/fixedpoint.h | 2 +- lib/framework/frame.c | 2 +- lib/framework/frame.h | 2 +- lib/framework/frameint.h | 2 +- lib/framework/frameresource.c | 2 +- lib/framework/frameresource.h | 2 +- lib/framework/i18n.c | 2 +- lib/framework/i18n.h | 2 +- lib/framework/input.c | 2 +- lib/framework/input.h | 2 +- lib/framework/lexer_input.c | 19 +++++++++++++ lib/framework/lexer_input.h | 19 +++++++++++++ lib/framework/listmacs.h | 2 +- lib/framework/macros.h | 2 +- lib/framework/math_ext.h | 2 +- lib/framework/physfs_ext.h | 2 +- lib/framework/resly.h | 2 +- lib/framework/resource_lexer.l | 2 +- lib/framework/resource_parser.y | 2 +- lib/framework/stdio_ext.c | 2 +- lib/framework/stdio_ext.h | 2 +- lib/framework/string_ext.h | 7 ++--- lib/framework/strres.c | 2 +- lib/framework/strres.h | 2 +- lib/framework/strres_lexer.l | 2 +- lib/framework/strres_parser.y | 2 +- lib/framework/strresly.h | 2 +- lib/framework/treap.c | 2 +- lib/framework/treap.h | 2 +- lib/framework/trig.c | 2 +- lib/framework/trig.h | 2 +- lib/framework/types.h | 2 +- lib/framework/utf.c | 2 +- lib/framework/utf.h | 2 +- lib/framework/vector.h | 2 +- lib/framework/wzglobal.h | 2 +- lib/gamelib/anim.c | 2 +- lib/gamelib/anim.h | 2 +- lib/gamelib/animobj.c | 2 +- lib/gamelib/animobj.h | 2 +- lib/gamelib/audp_lexer.l | 2 +- lib/gamelib/audp_parser.y | 2 +- lib/gamelib/gtime.c | 2 +- lib/gamelib/gtime.h | 2 +- lib/gamelib/hashtable.c | 2 +- lib/gamelib/hashtable.h | 2 +- lib/gamelib/parser.h | 2 +- lib/ivis_common/bitimage.c | 2 +- lib/ivis_common/bitimage.h | 2 +- lib/ivis_common/imd.c | 2 +- lib/ivis_common/imd.h | 2 +- lib/ivis_common/imdload.c | 2 +- lib/ivis_common/ivi.h | 2 +- lib/ivis_common/ivisdef.h | 2 +- lib/ivis_common/ivispatch.h | 2 +- lib/ivis_common/pieblitfunc.h | 2 +- lib/ivis_common/pieclip.c | 2 +- lib/ivis_common/pieclip.h | 2 +- lib/ivis_common/piedef.h | 2 +- lib/ivis_common/piefunc.h | 2 +- lib/ivis_common/piemode.h | 2 +- lib/ivis_common/piepalette.h | 2 +- lib/ivis_common/piestate.c | 2 +- lib/ivis_common/piestate.h | 2 +- lib/ivis_common/pietypes.h | 2 +- lib/ivis_common/png_util.c | 2 +- lib/ivis_common/png_util.h | 2 +- lib/ivis_common/rendmode.h | 2 +- lib/ivis_common/tex.h | 2 +- lib/ivis_common/textdraw.h | 2 +- lib/ivis_opengl/ivi.c | 2 +- lib/ivis_opengl/pieblitfunc.c | 2 +- lib/ivis_opengl/piedraw.c | 2 +- lib/ivis_opengl/piefunc.c | 2 +- lib/ivis_opengl/piematrix.c | 2 +- lib/ivis_opengl/piematrix.h | 2 +- lib/ivis_opengl/piemode.c | 2 +- lib/ivis_opengl/piepalette.c | 2 +- lib/ivis_opengl/piestate.c | 2 +- lib/ivis_opengl/rendmode.c | 2 +- lib/ivis_opengl/screen.c | 2 +- lib/ivis_opengl/screen.h | 2 +- lib/ivis_opengl/tex.c | 2 +- lib/ivis_opengl/textdraw.c | 2 +- lib/netplay/netjoin_stub.c | 2 +- lib/netplay/netlog.c | 2 +- lib/netplay/netlog.h | 2 +- lib/netplay/netplay.c | 2 +- lib/netplay/netplay.h | 2 +- lib/netplay/nettypes.c | 2 +- lib/netplay/nettypes.h | 2 +- lib/script/chat_lexer.l | 2 +- lib/script/chat_parser.y | 2 +- lib/script/chat_processing.h | 2 +- lib/script/codeprint.c | 2 +- lib/script/codeprint.h | 2 +- lib/script/event.c | 2 +- lib/script/event.h | 2 +- lib/script/eventsave.c | 2 +- lib/script/eventsave.h | 2 +- lib/script/interpreter.c | 2 +- lib/script/interpreter.h | 2 +- lib/script/parse.h | 2 +- lib/script/script.c | 2 +- lib/script/script.h | 2 +- lib/script/script_lexer.l | 2 +- lib/script/script_parser.y | 2 +- lib/script/stack.c | 2 +- lib/script/stack.h | 2 +- lib/sequence/sequence.c | 2 +- lib/sequence/sequence.h | 2 +- lib/sequence/timer.c | 2 +- lib/sequence/timer.h | 2 +- lib/sound/aud.h | 2 +- lib/sound/audio.c | 2 +- lib/sound/audio.h | 2 +- lib/sound/audio_id.c | 2 +- lib/sound/audio_id.h | 2 +- lib/sound/cdaudio.c | 2 +- lib/sound/cdaudio.h | 2 +- lib/sound/mixer.h | 2 +- lib/sound/oggvorbis.c | 2 +- lib/sound/oggvorbis.h | 2 +- lib/sound/openal_error.c | 2 +- lib/sound/openal_error.h | 2 +- lib/sound/openal_track.c | 2 +- lib/sound/playlist.c | 2 +- lib/sound/playlist.h | 2 +- lib/sound/track.c | 2 +- lib/sound/track.h | 2 +- lib/sound/tracklib.h | 2 +- lib/widget/bar.c | 2 +- lib/widget/bar.h | 2 +- lib/widget/button.c | 2 +- lib/widget/button.h | 2 +- lib/widget/editbox.c | 2 +- lib/widget/editbox.h | 2 +- lib/widget/form.c | 2 +- lib/widget/form.h | 2 +- lib/widget/label.c | 2 +- lib/widget/label.h | 2 +- lib/widget/scrap.c | 2 +- lib/widget/scrap.h | 2 +- lib/widget/slider.c | 2 +- lib/widget/slider.h | 2 +- lib/widget/tip.c | 2 +- lib/widget/tip.h | 2 +- lib/widget/widgbase.h | 2 +- lib/widget/widget.c | 2 +- lib/widget/widget.h | 2 +- lib/widget/widgint.h | 2 +- src/action.c | 2 +- src/action.h | 2 +- src/advvis.c | 2 +- src/advvis.h | 2 +- src/ai.c | 2 +- src/ai.h | 2 +- src/aiexperience.c | 2 +- src/aiexperience.h | 2 +- src/anim_id.h | 2 +- src/astar.cpp | 2 +- src/astar.h | 2 +- src/atmos.c | 2 +- src/atmos.h | 2 +- src/aud.c | 2 +- src/basedef.h | 2 +- src/baseobject.c | 2 +- src/baseobject.h | 2 +- src/bridge.c | 2 +- src/bridge.h | 2 +- src/bucket3d.c | 2 +- src/bucket3d.h | 2 +- src/challenge.c | 2 +- src/challenge.h | 2 +- src/cheat.c | 2 +- src/cheat.h | 2 +- src/clparse.c | 2 +- src/clparse.h | 2 +- src/cluster.c | 2 +- src/cluster.h | 2 +- src/cmddroid.c | 2 +- src/cmddroid.h | 2 +- src/cmddroiddef.h | 2 +- src/combat.c | 2 +- src/combat.h | 2 +- src/component.c | 2 +- src/component.h | 2 +- src/configuration.c | 2 +- src/configuration.h | 2 +- src/console.c | 2 +- src/console.h | 2 +- src/data.c | 2 +- src/data.h | 2 +- src/design.c | 2 +- src/design.h | 2 +- src/difficulty.c | 2 +- src/difficulty.h | 2 +- src/display.c | 2 +- src/display.h | 2 +- src/display3d.c | 2 +- src/display3d.h | 2 +- src/display3ddef.h | 2 +- src/displaydef.h | 2 +- src/drive.c | 2 +- src/drive.h | 2 +- src/droid.c | 2 +- src/droid.h | 2 +- src/droiddef.h | 2 +- src/e3demo.c | 2 +- src/e3demo.h | 2 +- src/edit3d.c | 2 +- src/edit3d.h | 2 +- src/effects.c | 2 +- src/effects.h | 2 +- src/environ.c | 2 +- src/environ.h | 2 +- src/feature.c | 2 +- src/feature.h | 2 +- src/featuredef.h | 2 +- src/formation.c | 2 +- src/formation.h | 2 +- src/formationdef.h | 2 +- src/fpath.c | 2 +- src/fpath.h | 2 +- src/frend.h | 2 +- src/frontend.c | 2 +- src/frontend.h | 2 +- src/function.c | 2 +- src/function.h | 2 +- src/functiondef.h | 2 +- src/game.c | 2 +- src/game.h | 2 +- src/gateway.c | 2 +- src/gateway.h | 2 +- src/geometry.c | 2 +- src/geometry.h | 2 +- src/group.c | 2 +- src/group.h | 2 +- src/hci.c | 2 +- src/hci.h | 2 +- src/ingameop.c | 2 +- src/ingameop.h | 2 +- src/init.c | 2 +- src/init.h | 2 +- src/intdisplay.c | 2 +- src/intdisplay.h | 2 +- src/intelmap.c | 2 +- src/intelmap.h | 2 +- src/intfac.h | 2 +- src/intimage.c | 2 +- src/intimage.h | 2 +- src/intorder.c | 2 +- src/intorder.h | 2 +- src/keybind.c | 2 +- src/keybind.h | 2 +- src/keyedit.c | 2 +- src/keyedit.h | 2 +- src/keymap.c | 2 +- src/keymap.h | 2 +- src/level_lexer.l | 2 +- src/levelint.h | 2 +- src/levels.c | 2 +- src/levels.h | 2 +- src/lighting.c | 2 +- src/lighting.h | 2 +- src/loadsave.c | 2 +- src/loadsave.h | 2 +- src/loop.c | 2 +- src/loop.h | 2 +- src/main.c | 2 +- src/main.h | 2 +- src/map.c | 2 +- src/map.h | 2 +- src/mapdisplay.c | 2 +- src/mapdisplay.h | 2 +- src/mapgrid.cpp | 2 +- src/mapgrid.h | 2 +- src/mechanics.c | 2 +- src/mechanics.h | 2 +- src/message.c | 2 +- src/message.h | 2 +- src/message_lexer.l | 2 +- src/message_parser.y | 2 +- src/messagedef.h | 2 +- src/messagely.h | 2 +- src/miscimd.c | 2 +- src/miscimd.h | 2 +- src/mission.c | 2 +- src/mission.h | 2 +- src/missiondef.h | 2 +- src/modding.h | 2 +- src/move.c | 2 +- src/move.h | 2 +- src/movedef.h | 2 +- src/multibot.c | 2 +- src/multigifts.c | 2 +- src/multigifts.h | 2 +- src/multiint.c | 2 +- src/multiint.h | 2 +- src/multijoin.c | 2 +- src/multijoin.h | 2 +- src/multilimit.c | 2 +- src/multilimit.h | 2 +- src/multimenu.c | 2 +- src/multimenu.h | 2 +- src/multiopt.c | 2 +- src/multiplay.c | 2 +- src/multiplay.h | 2 +- src/multirecv.h | 2 +- src/multistat.c | 2 +- src/multistat.h | 2 +- src/multistruct.c | 2 +- src/multisync.c | 2 +- src/objectdef.h | 2 +- src/objects.c | 2 +- src/objects.h | 2 +- src/objmem.c | 2 +- src/objmem.h | 2 +- src/oprint.c | 2 +- src/oprint.h | 2 +- src/order.c | 2 +- src/order.h | 2 +- src/orderdef.h | 2 +- src/parsetest.c | 19 +++++++++++++ src/parsetest.h | 19 +++++++++++++ src/pointtree.cpp | 19 +++++++++++++ src/pointtree.h | 19 +++++++++++++ src/positiondef.h | 2 +- src/power.c | 2 +- src/power.h | 2 +- src/projectile.c | 2 +- src/projectile.h | 2 +- src/projectiledef.h | 2 +- src/radar.c | 2 +- src/radar.h | 2 +- src/random.cpp | 19 +++++++++++++ src/random.h | 19 +++++++++++++ src/raycast.c | 2 +- src/raycast.h | 2 +- src/research.c | 2 +- src/research.h | 2 +- src/researchdef.h | 2 +- src/scores.c | 2 +- src/scores.h | 2 +- src/scriptai.c | 2 +- src/scriptai.h | 2 +- src/scriptcb.c | 2 +- src/scriptcb.h | 2 +- src/scriptextern.c | 2 +- src/scriptextern.h | 2 +- src/scriptfuncs.c | 2 +- src/scriptfuncs.h | 2 +- src/scriptobj.c | 2 +- src/scriptobj.h | 2 +- src/scripttabs.c | 2 +- src/scripttabs.h | 2 +- src/scriptvals.c | 2 +- src/scriptvals.h | 2 +- src/scriptvals_lexer.l | 2 +- src/scriptvals_parser.y | 2 +- src/selection.c | 2 +- src/selection.h | 2 +- src/seqdisp.c | 2 +- src/seqdisp.h | 2 +- src/stats.c | 2 +- src/stats.h | 2 +- src/statsdef.h | 28 +++++++++---------- src/stringdef.h | 2 +- src/structure.c | 2 +- src/structure.h | 2 +- src/structuredef.h | 2 +- src/terrain.c | 3 +- src/terrain.h | 3 +- src/text.c | 2 +- src/text.h | 2 +- src/texture.c | 2 +- src/texture.h | 2 +- src/transporter.c | 2 +- src/transporter.h | 2 +- src/version.c | 2 +- src/version.h | 2 +- src/visibility.c | 2 +- src/visibility.h | 2 +- src/warcam.c | 2 +- src/warcam.h | 2 +- src/warzoneconfig.c | 2 +- src/warzoneconfig.h | 2 +- src/wavecast.cpp | 19 +++++++++++++ src/wavecast.h | 19 +++++++++++++ src/weapondef.h | 2 +- src/wrappers.c | 2 +- src/wrappers.h | 2 +- tools/conversion/obj2pie.c | 2 +- tools/conversion/pie23ds.c | 2 +- tools/conversion/pie2wzm.c | 2 +- tools/conversion/simplipie.c | 2 +- tools/display/wzmto3ds.c | 2 +- tools/display/wzmutils.c | 2 +- tools/display/wzmutils.h | 2 +- tools/display/wzmviewer.c | 2 +- tools/display/wzmviewer.h | 2 +- tools/editworld/src/aboutdialog.cpp | 2 +- tools/editworld/src/autoflagdialog.cpp | 2 +- tools/editworld/src/bmphandler.cpp | 2 +- tools/editworld/src/bmphandler.h | 2 +- tools/editworld/src/brush.cpp | 2 +- tools/editworld/src/brush.h | 2 +- tools/editworld/src/brushprop.cpp | 2 +- tools/editworld/src/brushprop.h | 2 +- tools/editworld/src/btedit.cpp | 2 +- tools/editworld/src/btedit.h | 2 +- tools/editworld/src/bteditdoc.cpp | 2 +- tools/editworld/src/bteditdoc.h | 2 +- tools/editworld/src/bteditview.cpp | 2 +- tools/editworld/src/bteditview.h | 2 +- tools/editworld/src/chnkio.cpp | 2 +- tools/editworld/src/chnkio.h | 2 +- tools/editworld/src/ddimage.cpp | 2 +- tools/editworld/src/ddimage.h | 2 +- tools/editworld/src/debugprint.cpp | 2 +- tools/editworld/src/devmap.h | 2 +- tools/editworld/src/dibdraw.cpp | 2 +- tools/editworld/src/dibdraw.h | 2 +- tools/editworld/src/directx.cpp | 2 +- tools/editworld/src/directx.h | 2 +- tools/editworld/src/expandlimitsdlg.cpp | 2 +- tools/editworld/src/expandlimitsdlg.h | 2 +- tools/editworld/src/fileparse.cpp | 2 +- tools/editworld/src/fileparse.h | 2 +- tools/editworld/src/gateway.cpp | 2 +- tools/editworld/src/gateway.h | 2 +- tools/editworld/src/gatewaydef.h | 2 +- tools/editworld/src/gatewaysup.cpp | 2 +- tools/editworld/src/geometry.cpp | 2 +- tools/editworld/src/geometry.h | 2 +- tools/editworld/src/grdland.cpp | 2 +- tools/editworld/src/grdland.h | 2 +- tools/editworld/src/heightmap.cpp | 2 +- tools/editworld/src/heightmap.h | 2 +- tools/editworld/src/infodialog.cpp | 2 +- tools/editworld/src/initiallimitsdialog.cpp | 2 +- tools/editworld/src/keyhandler.cpp | 2 +- tools/editworld/src/limitsdialog.cpp | 2 +- tools/editworld/src/macros.h | 2 +- tools/editworld/src/mainframe.cpp | 2 +- tools/editworld/src/mainframe.h | 2 +- tools/editworld/src/mapprefs.cpp | 2 +- tools/editworld/src/mapprefs.h | 2 +- tools/editworld/src/objectproperties.cpp | 2 +- tools/editworld/src/objectproperties.h | 2 +- tools/editworld/src/pasteprefs.cpp | 2 +- tools/editworld/src/pasteprefs.h | 2 +- tools/editworld/src/pcxhandler.cpp | 2 +- tools/editworld/src/pcxhandler.h | 2 +- tools/editworld/src/playermap.cpp | 2 +- tools/editworld/src/playermap.h | 2 +- tools/editworld/src/resource.h | 2 +- tools/editworld/src/savesegmentdialog.cpp | 2 +- tools/editworld/src/stdafx.h | 2 +- tools/editworld/src/tdview.cpp | 2 +- tools/editworld/src/tdview.h | 2 +- tools/editworld/src/textsel.cpp | 2 +- tools/editworld/src/textsel.h | 2 +- tools/editworld/src/textureprefs.cpp | 2 +- tools/editworld/src/textureprefs.h | 2 +- tools/editworld/src/textureview.cpp | 2 +- tools/editworld/src/textureview.h | 2 +- tools/editworld/src/tiletypes.cpp | 2 +- tools/editworld/src/tiletypes.h | 2 +- tools/editworld/src/typedefs.h | 2 +- tools/editworld/src/undoredo.cpp | 2 +- tools/editworld/src/undoredo.h | 2 +- tools/editworld/src/wfview.cpp | 2 +- tools/editworld/src/wfview.h | 2 +- tools/editworld/src/winapi.cpp | 2 +- tools/editworld/src/winstuff.h | 2 +- tools/editworld/src/wxDialogs/aboutdialog.cpp | 2 +- .../src/wxDialogs/autoflagdialog.cpp | 2 +- tools/editworld/src/wxDialogs/infodialog.cpp | 2 +- .../src/wxDialogs/initiallimitsdialog.cpp | 2 +- .../editworld/src/wxDialogs/limitsdialog.cpp | 2 +- tools/editworld/src/wxDialogs/main.cpp | 2 +- tools/editworld/src/wxDialogs/mainframe.cpp | 2 +- tools/editworld/src/wxDialogs/numtextval.cpp | 2 +- .../src/wxDialogs/savesegmentdialog.cpp | 2 +- tools/map/mapload.h | 2 +- tools/pietoaster/imd.cpp | 2 +- tools/pietoaster/imd.h | 2 +- tools/pietoaster/imdloader.cpp | 2 +- tools/pietoaster/imdloader.h | 2 +- tools/pietoaster/macros.h | 2 +- tools/pietoaster/pie_types.h | 2 +- tools/pietoaster/texture.cpp | 2 +- tools/pietoaster/texture.h | 2 +- tools/pietoaster/wzglobal.h | 2 +- tools/qwzm/wzmutils.c | 2 +- tools/qwzm/wzmutils.h | 2 +- 554 files changed, 841 insertions(+), 555 deletions(-) diff --git a/build_tools/autorevision/autorevision.cpp b/build_tools/autorevision/autorevision.cpp index ee99570ac..bf4917dd9 100644 --- a/build_tools/autorevision/autorevision.cpp +++ b/build_tools/autorevision/autorevision.cpp @@ -3,7 +3,7 @@ * Copyright (C) 2005 Thomas Denk * Copyright (C) 2008 Paul Wise * Copyright (C) 2007-2008 Giel van Schijndel - * Copyright (C) 2007-2009 Warzone Resurrection Project + * Copyright (C) 2007-2010 Warzone 2100 Project * * This program is distributed 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. diff --git a/lib/betawidget/src/button.c b/lib/betawidget/src/button.c index acbe4066b..162670625 100644 --- a/lib/betawidget/src/button.c +++ b/lib/betawidget/src/button.c @@ -2,7 +2,7 @@ This file is part of Warzone 2100. Copyright (C) 2009 Elio Gubser Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/button.h b/lib/betawidget/src/button.h index ed74b41d9..388d6ca06 100644 --- a/lib/betawidget/src/button.h +++ b/lib/betawidget/src/button.h @@ -2,7 +2,7 @@ This file is part of Warzone 2100. Copyright (C) 2009 Elio Gubser Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/clipboard.h b/lib/betawidget/src/clipboard.h index 53ff01a52..53b791dfc 100644 --- a/lib/betawidget/src/clipboard.h +++ b/lib/betawidget/src/clipboard.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/font.c b/lib/betawidget/src/font.c index 513c508c6..0facc5078 100644 --- a/lib/betawidget/src/font.c +++ b/lib/betawidget/src/font.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/font.h b/lib/betawidget/src/font.h index 98ac17fa4..4d9e547c9 100644 --- a/lib/betawidget/src/font.h +++ b/lib/betawidget/src/font.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/geom.c b/lib/betawidget/src/geom.c index 3fa25553f..59b74d371 100644 --- a/lib/betawidget/src/geom.c +++ b/lib/betawidget/src/geom.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/geom.h b/lib/betawidget/src/geom.h index 6eef36876..59a05f2b8 100644 --- a/lib/betawidget/src/geom.h +++ b/lib/betawidget/src/geom.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/hBox.c b/lib/betawidget/src/hBox.c index 701331d86..289170591 100644 --- a/lib/betawidget/src/hBox.c +++ b/lib/betawidget/src/hBox.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/hBox.h b/lib/betawidget/src/hBox.h index a92de281f..42be89426 100644 --- a/lib/betawidget/src/hBox.h +++ b/lib/betawidget/src/hBox.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/imageButton.c b/lib/betawidget/src/imageButton.c index 04744c977..a6f8b988d 100644 --- a/lib/betawidget/src/imageButton.c +++ b/lib/betawidget/src/imageButton.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2009 Elio Gubser - Copyright (C) 2009 Warzone Resurrection Project + Copyright (C) 2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/imageButton.h b/lib/betawidget/src/imageButton.h index 6f776a9fe..7fd9ecbd7 100644 --- a/lib/betawidget/src/imageButton.h +++ b/lib/betawidget/src/imageButton.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2009 Elio Gubser - Copyright (C) 2009 Warzone Resurrection Project + Copyright (C) 2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/internal-cairo.h b/lib/betawidget/src/internal-cairo.h index e2561f063..98154046b 100644 --- a/lib/betawidget/src/internal-cairo.h +++ b/lib/betawidget/src/internal-cairo.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/keycode.h b/lib/betawidget/src/keycode.h index ca2027edc..84a0daa72 100644 --- a/lib/betawidget/src/keycode.h +++ b/lib/betawidget/src/keycode.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/lua-wrap.h b/lib/betawidget/src/lua-wrap.h index 6838d07fd..790e55f39 100644 --- a/lib/betawidget/src/lua-wrap.h +++ b/lib/betawidget/src/lua-wrap.h @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef __INCLUDED_LIB_BETAWIDGET_LUA_WRAP_H__ #define __INCLUDED_LIB_BETAWIDGET_LUA_WRAP_H__ diff --git a/lib/betawidget/src/patternManager.c b/lib/betawidget/src/patternManager.c index 55d8354e5..c6a1e19d2 100644 --- a/lib/betawidget/src/patternManager.c +++ b/lib/betawidget/src/patternManager.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2009 Elio Gubser - Copyright (C) 2009 Warzone Resurrection Project + Copyright (C) 2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/patternManager.h b/lib/betawidget/src/patternManager.h index fa677a8e0..16f387f08 100644 --- a/lib/betawidget/src/patternManager.h +++ b/lib/betawidget/src/patternManager.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2009 Elio Gubser - Copyright (C) 2009 Warzone Resurrection Project + Copyright (C) 2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/platform/sdl/clipboardWin32.c b/lib/betawidget/src/platform/sdl/clipboardWin32.c index 06d1ce2df..5e9aea64a 100644 --- a/lib/betawidget/src/platform/sdl/clipboardWin32.c +++ b/lib/betawidget/src/platform/sdl/clipboardWin32.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/platform/sdl/clipboardX11.c b/lib/betawidget/src/platform/sdl/clipboardX11.c index 0653250be..cbe75df0b 100644 --- a/lib/betawidget/src/platform/sdl/clipboardX11.c +++ b/lib/betawidget/src/platform/sdl/clipboardX11.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/platform/sdl/event.c b/lib/betawidget/src/platform/sdl/event.c index ca612ecdf..a38152d9e 100644 --- a/lib/betawidget/src/platform/sdl/event.c +++ b/lib/betawidget/src/platform/sdl/event.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/platform/sdl/event.h b/lib/betawidget/src/platform/sdl/event.h index 48318e9d1..68c68edb1 100644 --- a/lib/betawidget/src/platform/sdl/event.h +++ b/lib/betawidget/src/platform/sdl/event.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/platform/sdl/init.c b/lib/betawidget/src/platform/sdl/init.c index 5100deb51..f9b5cc378 100644 --- a/lib/betawidget/src/platform/sdl/init.c +++ b/lib/betawidget/src/platform/sdl/init.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/platform/sdl/init.h b/lib/betawidget/src/platform/sdl/init.h index 0fa9e99ee..1447d6697 100644 --- a/lib/betawidget/src/platform/sdl/init.h +++ b/lib/betawidget/src/platform/sdl/init.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/platform/sdl/time.c b/lib/betawidget/src/platform/sdl/time.c index 5b82ca54e..720b24e4a 100644 --- a/lib/betawidget/src/platform/sdl/time.c +++ b/lib/betawidget/src/platform/sdl/time.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/spacer.c b/lib/betawidget/src/spacer.c index 1b099f2dc..2548ca8fb 100644 --- a/lib/betawidget/src/spacer.c +++ b/lib/betawidget/src/spacer.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/spacer.h b/lib/betawidget/src/spacer.h index 3c39039fb..f6df1d488 100644 --- a/lib/betawidget/src/spacer.h +++ b/lib/betawidget/src/spacer.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/svgManager.c b/lib/betawidget/src/svgManager.c index 15c5ae123..41aa0842d 100644 --- a/lib/betawidget/src/svgManager.c +++ b/lib/betawidget/src/svgManager.c @@ -2,7 +2,7 @@ This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden Copyright (C) 2008 Elio Gubser - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/svgManager.h b/lib/betawidget/src/svgManager.h index 73f418fb3..cafbb8c2f 100644 --- a/lib/betawidget/src/svgManager.h +++ b/lib/betawidget/src/svgManager.h @@ -2,7 +2,7 @@ This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden Copyright (C) 2008 Elio Gubser - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/table.c b/lib/betawidget/src/table.c index 7aa9fdb4d..13ef69036 100644 --- a/lib/betawidget/src/table.c +++ b/lib/betawidget/src/table.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/table.h b/lib/betawidget/src/table.h index ccde4c149..04a865bf9 100644 --- a/lib/betawidget/src/table.h +++ b/lib/betawidget/src/table.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/textEntry.c b/lib/betawidget/src/textEntry.c index 1155caf34..2bf5a413d 100644 --- a/lib/betawidget/src/textEntry.c +++ b/lib/betawidget/src/textEntry.c @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include #include "textEntry.h" diff --git a/lib/betawidget/src/textEntry.h b/lib/betawidget/src/textEntry.h index fe00c8a0e..cb0ace684 100644 --- a/lib/betawidget/src/textEntry.h +++ b/lib/betawidget/src/textEntry.h @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef TEXTENTRY_H_ #define TEXTENTRY_H_ diff --git a/lib/betawidget/src/vector.c b/lib/betawidget/src/vector.c index 2f3b0e768..3c8914b7b 100644 --- a/lib/betawidget/src/vector.c +++ b/lib/betawidget/src/vector.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/vector.h b/lib/betawidget/src/vector.h index 710dcb64d..147c8c936 100644 --- a/lib/betawidget/src/vector.h +++ b/lib/betawidget/src/vector.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/widget.c b/lib/betawidget/src/widget.c index 17c2d404e..3984d8a61 100644 --- a/lib/betawidget/src/widget.c +++ b/lib/betawidget/src/widget.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/widget.h b/lib/betawidget/src/widget.h index 8453aa0b0..40a7d24f1 100644 --- a/lib/betawidget/src/widget.h +++ b/lib/betawidget/src/widget.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/window.c b/lib/betawidget/src/window.c index 5a83e5eed..d9425563a 100644 --- a/lib/betawidget/src/window.c +++ b/lib/betawidget/src/window.c @@ -2,7 +2,7 @@ This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden Copyright (C) 2008 Elio Gubser - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/src/window.h b/lib/betawidget/src/window.h index 008410eda..2efe29db4 100644 --- a/lib/betawidget/src/window.h +++ b/lib/betawidget/src/window.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/betawidget/tools/sdl-testapp.c b/lib/betawidget/tools/sdl-testapp.c index 36e60f383..5701a9374 100644 --- a/lib/betawidget/tools/sdl-testapp.c +++ b/lib/betawidget/tools/sdl-testapp.c @@ -2,7 +2,7 @@ This file is part of Warzone 2100. Copyright (C) 2008 Freddie Witherden Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/exceptionhandler/dumpinfo.cpp b/lib/exceptionhandler/dumpinfo.cpp index 4d7fb7b84..6ceca4a90 100644 --- a/lib/exceptionhandler/dumpinfo.cpp +++ b/lib/exceptionhandler/dumpinfo.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/exceptionhandler/dumpinfo.h b/lib/exceptionhandler/dumpinfo.h index 5a08d318a..2b63c2c10 100644 --- a/lib/exceptionhandler/dumpinfo.h +++ b/lib/exceptionhandler/dumpinfo.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/exceptionhandler/exceptionhandler.c b/lib/exceptionhandler/exceptionhandler.c index a8c59083a..a629a6b84 100644 --- a/lib/exceptionhandler/exceptionhandler.c +++ b/lib/exceptionhandler/exceptionhandler.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/exceptionhandler/exceptionhandler.h b/lib/exceptionhandler/exceptionhandler.h index 48756145b..bf54b27e5 100644 --- a/lib/exceptionhandler/exceptionhandler.h +++ b/lib/exceptionhandler/exceptionhandler.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/exceptionhandler/exchndl.c b/lib/exceptionhandler/exchndl.c index f68840a76..9d0261ebf 100644 --- a/lib/exceptionhandler/exchndl.c +++ b/lib/exceptionhandler/exchndl.c @@ -3,7 +3,7 @@ Copyright (C) 1997-XXXX José Fonseca * Originally based on Matt Pietrek's MSJEXHND.CPP in Microsoft Systems Journal, April 1997. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/exceptionhandler/exchndl.h b/lib/exceptionhandler/exchndl.h index 9e0190608..8c342ab4f 100644 --- a/lib/exceptionhandler/exchndl.h +++ b/lib/exceptionhandler/exchndl.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/configfile.c b/lib/framework/configfile.c index 154105448..4417bb20d 100644 --- a/lib/framework/configfile.c +++ b/lib/framework/configfile.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/configfile.h b/lib/framework/configfile.h index 45e3e749d..96bb907b9 100644 --- a/lib/framework/configfile.h +++ b/lib/framework/configfile.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/crc.cpp b/lib/framework/crc.cpp index 6994a7eb2..5f28e5019 100644 --- a/lib/framework/crc.cpp +++ b/lib/framework/crc.cpp @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include "crc.h" // Invariant: diff --git a/lib/framework/crc.h b/lib/framework/crc.h index 1038ef094..e03e6da0d 100644 --- a/lib/framework/crc.h +++ b/lib/framework/crc.h @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef _CRC_H_ #define _CRC_H_ diff --git a/lib/framework/cursors.c b/lib/framework/cursors.c index 18c4a16c0..8f1519bdc 100644 --- a/lib/framework/cursors.c +++ b/lib/framework/cursors.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/cursors.h b/lib/framework/cursors.h index fe2d0715c..974f7fe7b 100644 --- a/lib/framework/cursors.h +++ b/lib/framework/cursors.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/cursors16.c b/lib/framework/cursors16.c index a6e1eaeaa..d0a98b8a2 100644 --- a/lib/framework/cursors16.c +++ b/lib/framework/cursors16.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/cursors32.c b/lib/framework/cursors32.c index bfad4d9c0..863fa1807 100644 --- a/lib/framework/cursors32.c +++ b/lib/framework/cursors32.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/debug.c b/lib/framework/debug.c index 16a7e8a10..bec8731b5 100644 --- a/lib/framework/debug.c +++ b/lib/framework/debug.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/debug.h b/lib/framework/debug.h index dc4770fb8..35e6c60c1 100644 --- a/lib/framework/debug.h +++ b/lib/framework/debug.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/endian_hack.h b/lib/framework/endian_hack.h index 80d1d1a35..fce04963a 100644 --- a/lib/framework/endian_hack.h +++ b/lib/framework/endian_hack.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/file.h b/lib/framework/file.h index bfef18d62..2a7b963dd 100644 --- a/lib/framework/file.h +++ b/lib/framework/file.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/fixedpoint.h b/lib/framework/fixedpoint.h index 6dddaad62..303e603d2 100644 --- a/lib/framework/fixedpoint.h +++ b/lib/framework/fixedpoint.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/frame.c b/lib/framework/frame.c index d22ce3d24..ab1e3aa60 100644 --- a/lib/framework/frame.c +++ b/lib/framework/frame.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/frame.h b/lib/framework/frame.h index 6581df300..19b1aff39 100644 --- a/lib/framework/frame.h +++ b/lib/framework/frame.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/frameint.h b/lib/framework/frameint.h index 94b58630d..45548df15 100644 --- a/lib/framework/frameint.h +++ b/lib/framework/frameint.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/frameresource.c b/lib/framework/frameresource.c index f939f9e3e..47bf673ff 100644 --- a/lib/framework/frameresource.c +++ b/lib/framework/frameresource.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/frameresource.h b/lib/framework/frameresource.h index 863acb4c5..a631d2e9e 100644 --- a/lib/framework/frameresource.h +++ b/lib/framework/frameresource.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/i18n.c b/lib/framework/i18n.c index 21ff0f6e4..9ba45b683 100644 --- a/lib/framework/i18n.c +++ b/lib/framework/i18n.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/i18n.h b/lib/framework/i18n.h index ae8acf49c..9b821bb5d 100644 --- a/lib/framework/i18n.h +++ b/lib/framework/i18n.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/input.c b/lib/framework/input.c index 8ddd6c10e..051e75e03 100644 --- a/lib/framework/input.c +++ b/lib/framework/input.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/input.h b/lib/framework/input.h index be5a468e8..c7405b0a7 100644 --- a/lib/framework/input.h +++ b/lib/framework/input.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/lexer_input.c b/lib/framework/lexer_input.c index 7b5ff62f8..310244aab 100644 --- a/lib/framework/lexer_input.c +++ b/lib/framework/lexer_input.c @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include "frame.h" #include "lexer_input.h" diff --git a/lib/framework/lexer_input.h b/lib/framework/lexer_input.h index 601aba28b..b6dd01cee 100644 --- a/lib/framework/lexer_input.h +++ b/lib/framework/lexer_input.h @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef __INCLUDED_LIB_FRAMEWORK_LEXER_INPUT_H__ #define __INCLUDED_LIB_FRAMEWORK_LEXER_INPUT_H__ diff --git a/lib/framework/listmacs.h b/lib/framework/listmacs.h index 712e05ff0..6ba708b47 100644 --- a/lib/framework/listmacs.h +++ b/lib/framework/listmacs.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/macros.h b/lib/framework/macros.h index a164579d3..55a8a0713 100644 --- a/lib/framework/macros.h +++ b/lib/framework/macros.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/math_ext.h b/lib/framework/math_ext.h index 57d48eec9..b2ef5b973 100644 --- a/lib/framework/math_ext.h +++ b/lib/framework/math_ext.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/physfs_ext.h b/lib/framework/physfs_ext.h index 8c4090a0f..ead9f2d54 100644 --- a/lib/framework/physfs_ext.h +++ b/lib/framework/physfs_ext.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/resly.h b/lib/framework/resly.h index 86ecebbb4..b086cb79a 100644 --- a/lib/framework/resly.h +++ b/lib/framework/resly.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/resource_lexer.l b/lib/framework/resource_lexer.l index a71ce0612..aae199a0c 100644 --- a/lib/framework/resource_lexer.l +++ b/lib/framework/resource_lexer.l @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/resource_parser.y b/lib/framework/resource_parser.y index f56042d03..2adfe9375 100644 --- a/lib/framework/resource_parser.y +++ b/lib/framework/resource_parser.y @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/stdio_ext.c b/lib/framework/stdio_ext.c index fd7be4604..f68294be4 100644 --- a/lib/framework/stdio_ext.c +++ b/lib/framework/stdio_ext.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1992-2007 Trolltech ASA. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/stdio_ext.h b/lib/framework/stdio_ext.h index 5fb1f48e3..cb45cfe08 100644 --- a/lib/framework/stdio_ext.h +++ b/lib/framework/stdio_ext.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/string_ext.h b/lib/framework/string_ext.h index 36dab5ce2..eb03537ca 100644 --- a/lib/framework/string_ext.h +++ b/lib/framework/string_ext.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. - Copyright (C) 2005-2006 Free Software Foundation, Inc. - Copyright (C) 2009 Warzone Resurrection Project + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License along with Warzone 2100; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - MA 02110-1301, USA. + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef STRING_EXT_H #define STRING_EXT_H diff --git a/lib/framework/strres.c b/lib/framework/strres.c index 626aebbd7..c09215022 100644 --- a/lib/framework/strres.c +++ b/lib/framework/strres.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/strres.h b/lib/framework/strres.h index 807c09e19..832a2e95c 100644 --- a/lib/framework/strres.h +++ b/lib/framework/strres.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/strres_lexer.l b/lib/framework/strres_lexer.l index 9d9b0a2ae..2e6393029 100644 --- a/lib/framework/strres_lexer.l +++ b/lib/framework/strres_lexer.l @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/strres_parser.y b/lib/framework/strres_parser.y index 3e859cdea..3683aba72 100644 --- a/lib/framework/strres_parser.y +++ b/lib/framework/strres_parser.y @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/strresly.h b/lib/framework/strresly.h index ce68828a9..09b17b695 100644 --- a/lib/framework/strresly.h +++ b/lib/framework/strresly.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/treap.c b/lib/framework/treap.c index 587421095..5b70a0169 100644 --- a/lib/framework/treap.c +++ b/lib/framework/treap.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/treap.h b/lib/framework/treap.h index 893f1bb8f..80a85ace9 100644 --- a/lib/framework/treap.h +++ b/lib/framework/treap.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/trig.c b/lib/framework/trig.c index 293f1bcd4..af60bdad1 100644 --- a/lib/framework/trig.c +++ b/lib/framework/trig.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/trig.h b/lib/framework/trig.h index 684de40cc..2424ebff2 100644 --- a/lib/framework/trig.h +++ b/lib/framework/trig.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/types.h b/lib/framework/types.h index ff7ca6838..9c4d9cd9d 100644 --- a/lib/framework/types.h +++ b/lib/framework/types.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/utf.c b/lib/framework/utf.c index ff3ee3c19..617a3498f 100644 --- a/lib/framework/utf.c +++ b/lib/framework/utf.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/utf.h b/lib/framework/utf.h index 7ff6e6cfd..108c187af 100644 --- a/lib/framework/utf.h +++ b/lib/framework/utf.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/vector.h b/lib/framework/vector.h index d26335de4..d2747505e 100644 --- a/lib/framework/vector.h +++ b/lib/framework/vector.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/framework/wzglobal.h b/lib/framework/wzglobal.h index 113223e89..b0f4c726f 100644 --- a/lib/framework/wzglobal.h +++ b/lib/framework/wzglobal.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1992-2007 Trolltech ASA. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/anim.c b/lib/gamelib/anim.c index bda643034..d8e5ae29a 100644 --- a/lib/gamelib/anim.c +++ b/lib/gamelib/anim.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/anim.h b/lib/gamelib/anim.h index 0b1982b28..c25818e80 100644 --- a/lib/gamelib/anim.h +++ b/lib/gamelib/anim.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/animobj.c b/lib/gamelib/animobj.c index 21d705c26..28a65206f 100644 --- a/lib/gamelib/animobj.c +++ b/lib/gamelib/animobj.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/animobj.h b/lib/gamelib/animobj.h index 8a3ed600d..7e98e4c43 100644 --- a/lib/gamelib/animobj.h +++ b/lib/gamelib/animobj.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/audp_lexer.l b/lib/gamelib/audp_lexer.l index 9f6ac6259..992337bdf 100644 --- a/lib/gamelib/audp_lexer.l +++ b/lib/gamelib/audp_lexer.l @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/audp_parser.y b/lib/gamelib/audp_parser.y index d8eb5d42b..86b9abafd 100644 --- a/lib/gamelib/audp_parser.y +++ b/lib/gamelib/audp_parser.y @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/gtime.c b/lib/gamelib/gtime.c index 1b1c1c601..095618c84 100644 --- a/lib/gamelib/gtime.c +++ b/lib/gamelib/gtime.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/gtime.h b/lib/gamelib/gtime.h index f21a0059c..d3bfe3996 100644 --- a/lib/gamelib/gtime.h +++ b/lib/gamelib/gtime.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/hashtable.c b/lib/gamelib/hashtable.c index 132e115a0..b94930e4d 100644 --- a/lib/gamelib/hashtable.c +++ b/lib/gamelib/hashtable.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/hashtable.h b/lib/gamelib/hashtable.h index f242080d7..3a85fffdb 100644 --- a/lib/gamelib/hashtable.h +++ b/lib/gamelib/hashtable.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/gamelib/parser.h b/lib/gamelib/parser.h index a31ec7fd4..d24f59dcf 100644 --- a/lib/gamelib/parser.h +++ b/lib/gamelib/parser.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/bitimage.c b/lib/ivis_common/bitimage.c index 02a7ff219..b4dc36b77 100644 --- a/lib/ivis_common/bitimage.c +++ b/lib/ivis_common/bitimage.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/bitimage.h b/lib/ivis_common/bitimage.h index 16dceee08..f38565dee 100644 --- a/lib/ivis_common/bitimage.h +++ b/lib/ivis_common/bitimage.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/imd.c b/lib/ivis_common/imd.c index 9e1ff3b37..c570be221 100644 --- a/lib/ivis_common/imd.c +++ b/lib/ivis_common/imd.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/imd.h b/lib/ivis_common/imd.h index 0fab9e11f..35f718a3e 100644 --- a/lib/ivis_common/imd.h +++ b/lib/ivis_common/imd.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/imdload.c b/lib/ivis_common/imdload.c index e6f69a5a0..283c04320 100644 --- a/lib/ivis_common/imdload.c +++ b/lib/ivis_common/imdload.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/ivi.h b/lib/ivis_common/ivi.h index a422aa3cb..f1bf257ab 100644 --- a/lib/ivis_common/ivi.h +++ b/lib/ivis_common/ivi.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/ivisdef.h b/lib/ivis_common/ivisdef.h index 03676a990..19c57f79e 100644 --- a/lib/ivis_common/ivisdef.h +++ b/lib/ivis_common/ivisdef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/ivispatch.h b/lib/ivis_common/ivispatch.h index 98acc3e82..f30212c16 100644 --- a/lib/ivis_common/ivispatch.h +++ b/lib/ivis_common/ivispatch.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/pieblitfunc.h b/lib/ivis_common/pieblitfunc.h index 6ebfbc6a7..643f129f2 100644 --- a/lib/ivis_common/pieblitfunc.h +++ b/lib/ivis_common/pieblitfunc.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/pieclip.c b/lib/ivis_common/pieclip.c index d2b007aa5..4ae07e5dc 100644 --- a/lib/ivis_common/pieclip.c +++ b/lib/ivis_common/pieclip.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/pieclip.h b/lib/ivis_common/pieclip.h index e3d14d71e..7f00ef96b 100644 --- a/lib/ivis_common/pieclip.h +++ b/lib/ivis_common/pieclip.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/piedef.h b/lib/ivis_common/piedef.h index da2cce38b..318fc4ef1 100644 --- a/lib/ivis_common/piedef.h +++ b/lib/ivis_common/piedef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/piefunc.h b/lib/ivis_common/piefunc.h index 552102d6d..a53671781 100644 --- a/lib/ivis_common/piefunc.h +++ b/lib/ivis_common/piefunc.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/piemode.h b/lib/ivis_common/piemode.h index 9b1ccbd1f..6b46fe642 100644 --- a/lib/ivis_common/piemode.h +++ b/lib/ivis_common/piemode.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/piepalette.h b/lib/ivis_common/piepalette.h index d508331ac..5f2a91e94 100644 --- a/lib/ivis_common/piepalette.h +++ b/lib/ivis_common/piepalette.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/piestate.c b/lib/ivis_common/piestate.c index 2bba46a47..0b64c4fdf 100644 --- a/lib/ivis_common/piestate.c +++ b/lib/ivis_common/piestate.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/piestate.h b/lib/ivis_common/piestate.h index dc7ce3920..cc37d1ccc 100644 --- a/lib/ivis_common/piestate.h +++ b/lib/ivis_common/piestate.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/pietypes.h b/lib/ivis_common/pietypes.h index 169e8a857..75ad46327 100644 --- a/lib/ivis_common/pietypes.h +++ b/lib/ivis_common/pietypes.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/png_util.c b/lib/ivis_common/png_util.c index 1498d12ee..ff81f701d 100644 --- a/lib/ivis_common/png_util.c +++ b/lib/ivis_common/png_util.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/png_util.h b/lib/ivis_common/png_util.h index cda6c1df8..805ab159a 100644 --- a/lib/ivis_common/png_util.h +++ b/lib/ivis_common/png_util.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/rendmode.h b/lib/ivis_common/rendmode.h index 0b0803b80..3c7149b2d 100644 --- a/lib/ivis_common/rendmode.h +++ b/lib/ivis_common/rendmode.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/tex.h b/lib/ivis_common/tex.h index bf9a6bb63..fbbc00859 100644 --- a/lib/ivis_common/tex.h +++ b/lib/ivis_common/tex.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_common/textdraw.h b/lib/ivis_common/textdraw.h index 35b6bced1..1d7bf55bd 100644 --- a/lib/ivis_common/textdraw.h +++ b/lib/ivis_common/textdraw.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/ivi.c b/lib/ivis_opengl/ivi.c index b5789a218..5f090375d 100644 --- a/lib/ivis_opengl/ivi.c +++ b/lib/ivis_opengl/ivi.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/pieblitfunc.c b/lib/ivis_opengl/pieblitfunc.c index 81e0481b7..c9f093048 100644 --- a/lib/ivis_opengl/pieblitfunc.c +++ b/lib/ivis_opengl/pieblitfunc.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/piedraw.c b/lib/ivis_opengl/piedraw.c index 3ec3e6f26..3d0404ebe 100644 --- a/lib/ivis_opengl/piedraw.c +++ b/lib/ivis_opengl/piedraw.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/piefunc.c b/lib/ivis_opengl/piefunc.c index d5a84dea3..f6f87b1f9 100644 --- a/lib/ivis_opengl/piefunc.c +++ b/lib/ivis_opengl/piefunc.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/piematrix.c b/lib/ivis_opengl/piematrix.c index c8dc2a979..affbc2566 100644 --- a/lib/ivis_opengl/piematrix.c +++ b/lib/ivis_opengl/piematrix.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/piematrix.h b/lib/ivis_opengl/piematrix.h index d40fd93fc..c96493dc8 100644 --- a/lib/ivis_opengl/piematrix.h +++ b/lib/ivis_opengl/piematrix.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/piemode.c b/lib/ivis_opengl/piemode.c index 4508f6530..684939162 100644 --- a/lib/ivis_opengl/piemode.c +++ b/lib/ivis_opengl/piemode.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/piepalette.c b/lib/ivis_opengl/piepalette.c index 07e853723..3c8b629d7 100644 --- a/lib/ivis_opengl/piepalette.c +++ b/lib/ivis_opengl/piepalette.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/piestate.c b/lib/ivis_opengl/piestate.c index b8ec9c179..bb7e73ecd 100644 --- a/lib/ivis_opengl/piestate.c +++ b/lib/ivis_opengl/piestate.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/rendmode.c b/lib/ivis_opengl/rendmode.c index f8ca79713..856fa04ef 100644 --- a/lib/ivis_opengl/rendmode.c +++ b/lib/ivis_opengl/rendmode.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/screen.c b/lib/ivis_opengl/screen.c index cf2d85752..7e3611f07 100644 --- a/lib/ivis_opengl/screen.c +++ b/lib/ivis_opengl/screen.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/screen.h b/lib/ivis_opengl/screen.h index c96b7db79..8850460db 100644 --- a/lib/ivis_opengl/screen.h +++ b/lib/ivis_opengl/screen.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/tex.c b/lib/ivis_opengl/tex.c index 391611133..e44ac090c 100644 --- a/lib/ivis_opengl/tex.c +++ b/lib/ivis_opengl/tex.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ivis_opengl/textdraw.c b/lib/ivis_opengl/textdraw.c index badeba423..285885c75 100644 --- a/lib/ivis_opengl/textdraw.c +++ b/lib/ivis_opengl/textdraw.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/netplay/netjoin_stub.c b/lib/netplay/netjoin_stub.c index 89a72bb6d..ae90bab4e 100644 --- a/lib/netplay/netjoin_stub.c +++ b/lib/netplay/netjoin_stub.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/netplay/netlog.c b/lib/netplay/netlog.c index 14e31294f..b981579db 100644 --- a/lib/netplay/netlog.c +++ b/lib/netplay/netlog.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/netplay/netlog.h b/lib/netplay/netlog.h index 02520e68d..e097799c9 100644 --- a/lib/netplay/netlog.h +++ b/lib/netplay/netlog.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/netplay/netplay.c b/lib/netplay/netplay.c index 21e2726f4..2d77ee50e 100644 --- a/lib/netplay/netplay.c +++ b/lib/netplay/netplay.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2010 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/netplay/netplay.h b/lib/netplay/netplay.h index 4ad010365..31ecc5fbb 100644 --- a/lib/netplay/netplay.h +++ b/lib/netplay/netplay.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/netplay/nettypes.c b/lib/netplay/nettypes.c index 158d4bbab..33a8c0010 100644 --- a/lib/netplay/nettypes.c +++ b/lib/netplay/nettypes.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/netplay/nettypes.h b/lib/netplay/nettypes.h index 28507a7b2..cb55a117b 100644 --- a/lib/netplay/nettypes.h +++ b/lib/netplay/nettypes.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/chat_lexer.l b/lib/script/chat_lexer.l index 48bbc3bbf..7ee6cc53d 100644 --- a/lib/script/chat_lexer.l +++ b/lib/script/chat_lexer.l @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2006-2008 Roman - Copyright (C) 2006-2009 Warzone Resurrection Project + Copyright (C) 2006-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/chat_parser.y b/lib/script/chat_parser.y index 5980501fc..eae428b89 100644 --- a/lib/script/chat_parser.y +++ b/lib/script/chat_parser.y @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2006-2008 Roman - Copyright (C) 2006-2009 Warzone Resurrection Project + Copyright (C) 2006-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/chat_processing.h b/lib/script/chat_processing.h index 27219d85b..969c56e03 100644 --- a/lib/script/chat_processing.h +++ b/lib/script/chat_processing.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2006 Roman - Copyright (C) 2006-2009 Warzone Resurrection Project + Copyright (C) 2006-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/codeprint.c b/lib/script/codeprint.c index 36b4b7f30..2c49ab1dc 100644 --- a/lib/script/codeprint.c +++ b/lib/script/codeprint.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/codeprint.h b/lib/script/codeprint.h index 163d93989..2192eb590 100644 --- a/lib/script/codeprint.h +++ b/lib/script/codeprint.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/event.c b/lib/script/event.c index aae9dfcb4..403214a9b 100644 --- a/lib/script/event.c +++ b/lib/script/event.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/event.h b/lib/script/event.h index f52bcdc47..6bcd5b471 100644 --- a/lib/script/event.h +++ b/lib/script/event.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/eventsave.c b/lib/script/eventsave.c index 5a9b8a95b..9f66c0406 100644 --- a/lib/script/eventsave.c +++ b/lib/script/eventsave.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/eventsave.h b/lib/script/eventsave.h index 674e3fd14..a0c53342b 100644 --- a/lib/script/eventsave.h +++ b/lib/script/eventsave.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/interpreter.c b/lib/script/interpreter.c index 24f10aef1..a64166b6e 100644 --- a/lib/script/interpreter.c +++ b/lib/script/interpreter.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/interpreter.h b/lib/script/interpreter.h index 42da2af67..0c5dbfcfe 100644 --- a/lib/script/interpreter.h +++ b/lib/script/interpreter.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/parse.h b/lib/script/parse.h index aec576ad0..58bb3ec93 100644 --- a/lib/script/parse.h +++ b/lib/script/parse.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/script.c b/lib/script/script.c index 10ff9b308..ede85e8df 100644 --- a/lib/script/script.c +++ b/lib/script/script.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/script.h b/lib/script/script.h index fec13ffdc..79d19e15e 100644 --- a/lib/script/script.h +++ b/lib/script/script.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/script_lexer.l b/lib/script/script_lexer.l index a3b5dbb26..d6cbd7074 100644 --- a/lib/script/script_lexer.l +++ b/lib/script/script_lexer.l @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/script_parser.y b/lib/script/script_parser.y index 39aac6e3f..31e8cdff8 100644 --- a/lib/script/script_parser.y +++ b/lib/script/script_parser.y @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/stack.c b/lib/script/stack.c index 3d4fa3c16..5dd8a4d65 100644 --- a/lib/script/stack.c +++ b/lib/script/stack.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/script/stack.h b/lib/script/stack.h index 32d12260e..e68ca36f9 100644 --- a/lib/script/stack.h +++ b/lib/script/stack.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sequence/sequence.c b/lib/sequence/sequence.c index 2f0e795b2..02c2ee177 100644 --- a/lib/sequence/sequence.c +++ b/lib/sequence/sequence.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sequence/sequence.h b/lib/sequence/sequence.h index 5ef52783b..46815f225 100644 --- a/lib/sequence/sequence.h +++ b/lib/sequence/sequence.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sequence/timer.c b/lib/sequence/timer.c index 0279fad51..469619dcb 100644 --- a/lib/sequence/timer.c +++ b/lib/sequence/timer.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sequence/timer.h b/lib/sequence/timer.h index 8c0775c58..d21cb7d31 100644 --- a/lib/sequence/timer.h +++ b/lib/sequence/timer.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/aud.h b/lib/sound/aud.h index 84b998803..e3082023e 100644 --- a/lib/sound/aud.h +++ b/lib/sound/aud.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/audio.c b/lib/sound/audio.c index 0d741ddb6..d5677838f 100644 --- a/lib/sound/audio.c +++ b/lib/sound/audio.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/audio.h b/lib/sound/audio.h index 7675929c6..0311efe67 100644 --- a/lib/sound/audio.h +++ b/lib/sound/audio.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/audio_id.c b/lib/sound/audio_id.c index 6b23730ba..0b93a1a37 100644 --- a/lib/sound/audio_id.c +++ b/lib/sound/audio_id.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/audio_id.h b/lib/sound/audio_id.h index d4d375c48..6108899c7 100644 --- a/lib/sound/audio_id.h +++ b/lib/sound/audio_id.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/cdaudio.c b/lib/sound/cdaudio.c index 979c760f1..2a8dd5927 100644 --- a/lib/sound/cdaudio.c +++ b/lib/sound/cdaudio.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/cdaudio.h b/lib/sound/cdaudio.h index 102c8d764..1f19ea7a1 100644 --- a/lib/sound/cdaudio.h +++ b/lib/sound/cdaudio.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/mixer.h b/lib/sound/mixer.h index 602fbb25e..729d54dc7 100644 --- a/lib/sound/mixer.h +++ b/lib/sound/mixer.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/oggvorbis.c b/lib/sound/oggvorbis.c index 3afd1e08c..633e699e6 100644 --- a/lib/sound/oggvorbis.c +++ b/lib/sound/oggvorbis.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/oggvorbis.h b/lib/sound/oggvorbis.h index ab54267b1..b490f9bf3 100644 --- a/lib/sound/oggvorbis.h +++ b/lib/sound/oggvorbis.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/openal_error.c b/lib/sound/openal_error.c index a9c6326c3..95aa1f9d8 100644 --- a/lib/sound/openal_error.c +++ b/lib/sound/openal_error.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/openal_error.h b/lib/sound/openal_error.h index db10e24d3..2d2775e66 100644 --- a/lib/sound/openal_error.h +++ b/lib/sound/openal_error.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/openal_track.c b/lib/sound/openal_track.c index b2a497d67..405fb43a4 100644 --- a/lib/sound/openal_track.c +++ b/lib/sound/openal_track.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/playlist.c b/lib/sound/playlist.c index 47756ca70..0c9828959 100644 --- a/lib/sound/playlist.c +++ b/lib/sound/playlist.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/playlist.h b/lib/sound/playlist.h index a00e63970..380dcf547 100644 --- a/lib/sound/playlist.h +++ b/lib/sound/playlist.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/track.c b/lib/sound/track.c index 713772da7..ca2f4361f 100644 --- a/lib/sound/track.c +++ b/lib/sound/track.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/track.h b/lib/sound/track.h index 24fba4272..428a30777 100644 --- a/lib/sound/track.h +++ b/lib/sound/track.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/sound/tracklib.h b/lib/sound/tracklib.h index 611696c3f..0fcf42dac 100644 --- a/lib/sound/tracklib.h +++ b/lib/sound/tracklib.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/bar.c b/lib/widget/bar.c index a3d8bc36d..ebe17bd13 100644 --- a/lib/widget/bar.c +++ b/lib/widget/bar.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/bar.h b/lib/widget/bar.h index c2140e696..4c585371f 100644 --- a/lib/widget/bar.h +++ b/lib/widget/bar.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/button.c b/lib/widget/button.c index 81942a90b..c51467fa5 100644 --- a/lib/widget/button.c +++ b/lib/widget/button.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/button.h b/lib/widget/button.h index f85859559..e4a1a3995 100644 --- a/lib/widget/button.h +++ b/lib/widget/button.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/editbox.c b/lib/widget/editbox.c index d2c17f701..cb27798ec 100644 --- a/lib/widget/editbox.c +++ b/lib/widget/editbox.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/editbox.h b/lib/widget/editbox.h index 728005944..e0edc8708 100644 --- a/lib/widget/editbox.h +++ b/lib/widget/editbox.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/form.c b/lib/widget/form.c index cededcf03..1267593fb 100644 --- a/lib/widget/form.c +++ b/lib/widget/form.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/form.h b/lib/widget/form.h index 754654945..e388649eb 100644 --- a/lib/widget/form.h +++ b/lib/widget/form.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/label.c b/lib/widget/label.c index 945410c47..c4f8dee16 100644 --- a/lib/widget/label.c +++ b/lib/widget/label.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/label.h b/lib/widget/label.h index f61335839..7408f1473 100644 --- a/lib/widget/label.h +++ b/lib/widget/label.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/scrap.c b/lib/widget/scrap.c index 8092bd02e..55ecc1c70 100644 --- a/lib/widget/scrap.c +++ b/lib/widget/scrap.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/scrap.h b/lib/widget/scrap.h index 912d6a2dc..ddfdcc36b 100644 --- a/lib/widget/scrap.h +++ b/lib/widget/scrap.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/slider.c b/lib/widget/slider.c index f5058f4b5..69ce1eced 100644 --- a/lib/widget/slider.c +++ b/lib/widget/slider.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/slider.h b/lib/widget/slider.h index 34d74581b..188d177ba 100644 --- a/lib/widget/slider.h +++ b/lib/widget/slider.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/tip.c b/lib/widget/tip.c index 694fcb277..59409a21b 100644 --- a/lib/widget/tip.c +++ b/lib/widget/tip.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/tip.h b/lib/widget/tip.h index ddeb9f92b..54cd69f6c 100644 --- a/lib/widget/tip.h +++ b/lib/widget/tip.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/widgbase.h b/lib/widget/widgbase.h index e9e394400..686991049 100644 --- a/lib/widget/widgbase.h +++ b/lib/widget/widgbase.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/widget.c b/lib/widget/widget.c index 3a07d9853..bebd75317 100644 --- a/lib/widget/widget.c +++ b/lib/widget/widget.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/widget.h b/lib/widget/widget.h index b41b0efa3..1264340a1 100644 --- a/lib/widget/widget.h +++ b/lib/widget/widget.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/widget/widgint.h b/lib/widget/widgint.h index bdffe591d..f0b723a7a 100644 --- a/lib/widget/widgint.h +++ b/lib/widget/widgint.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/action.c b/src/action.c index 257b86374..f9e6db2d1 100644 --- a/src/action.c +++ b/src/action.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/action.h b/src/action.h index c0801f394..8c66250fd 100644 --- a/src/action.h +++ b/src/action.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/advvis.c b/src/advvis.c index 7871710f6..001d42f87 100644 --- a/src/advvis.c +++ b/src/advvis.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/advvis.h b/src/advvis.h index 983652b36..34a5a9974 100644 --- a/src/advvis.h +++ b/src/advvis.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/ai.c b/src/ai.c index ef2076047..9bda20380 100644 --- a/src/ai.c +++ b/src/ai.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/ai.h b/src/ai.h index f1f9b131e..65104229a 100644 --- a/src/ai.h +++ b/src/ai.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/aiexperience.c b/src/aiexperience.c index d8ecf1086..d236e29c8 100644 --- a/src/aiexperience.c +++ b/src/aiexperience.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2006-2009 Warzone Resurrection Project + Copyright (C) 2006-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/aiexperience.h b/src/aiexperience.h index a126a11ef..edac8381e 100644 --- a/src/aiexperience.h +++ b/src/aiexperience.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2006-2009 Warzone Resurrection Project + Copyright (C) 2006-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/anim_id.h b/src/anim_id.h index fd01453c2..27312d5c8 100644 --- a/src/anim_id.h +++ b/src/anim_id.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/astar.cpp b/src/astar.cpp index d534bd0e1..fb2fa1509 100644 --- a/src/astar.cpp +++ b/src/astar.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2010 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/astar.h b/src/astar.h index a8d6fe5af..dc465498d 100644 --- a/src/astar.h +++ b/src/astar.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/atmos.c b/src/atmos.c index fba8857ad..357668125 100644 --- a/src/atmos.c +++ b/src/atmos.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/atmos.h b/src/atmos.h index 3eab2e5e3..be3365bf5 100644 --- a/src/atmos.h +++ b/src/atmos.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/aud.c b/src/aud.c index e4cf84496..0500e82b5 100644 --- a/src/aud.c +++ b/src/aud.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/basedef.h b/src/basedef.h index c1a61aa9c..cfc3ede3b 100644 --- a/src/basedef.h +++ b/src/basedef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/baseobject.c b/src/baseobject.c index 18f52ac74..b3104bc0a 100644 --- a/src/baseobject.c +++ b/src/baseobject.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/baseobject.h b/src/baseobject.h index e103e145d..28cbec700 100644 --- a/src/baseobject.h +++ b/src/baseobject.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/bridge.c b/src/bridge.c index c4c35b2c4..7213e5e07 100644 --- a/src/bridge.c +++ b/src/bridge.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/bridge.h b/src/bridge.h index 6e376923c..155b7e2f6 100644 --- a/src/bridge.h +++ b/src/bridge.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/bucket3d.c b/src/bucket3d.c index e2558565c..b99c7b3b2 100644 --- a/src/bucket3d.c +++ b/src/bucket3d.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/bucket3d.h b/src/bucket3d.h index b83c8f43f..bba44f271 100644 --- a/src/bucket3d.h +++ b/src/bucket3d.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/challenge.c b/src/challenge.c index b2ef0424b..01115d04f 100644 --- a/src/challenge.c +++ b/src/challenge.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/challenge.h b/src/challenge.h index c21ebe20d..7bd6beb63 100644 --- a/src/challenge.h +++ b/src/challenge.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/cheat.c b/src/cheat.c index fe6fb72a2..8835ccaf5 100644 --- a/src/cheat.c +++ b/src/cheat.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/cheat.h b/src/cheat.h index 9bde3f883..4e6eff169 100644 --- a/src/cheat.h +++ b/src/cheat.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/clparse.c b/src/clparse.c index da1178543..5b9d22b19 100644 --- a/src/clparse.c +++ b/src/clparse.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/clparse.h b/src/clparse.h index 7c74b9560..4988f2383 100644 --- a/src/clparse.h +++ b/src/clparse.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/cluster.c b/src/cluster.c index afc67c921..916e29335 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/cluster.h b/src/cluster.h index de90e10a4..acc619047 100644 --- a/src/cluster.h +++ b/src/cluster.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/cmddroid.c b/src/cmddroid.c index bc32d1bd7..a16091047 100644 --- a/src/cmddroid.c +++ b/src/cmddroid.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/cmddroid.h b/src/cmddroid.h index 53adf4db6..a24267a9e 100644 --- a/src/cmddroid.h +++ b/src/cmddroid.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/cmddroiddef.h b/src/cmddroiddef.h index 9e8c518fe..9f200be52 100644 --- a/src/cmddroiddef.h +++ b/src/cmddroiddef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/combat.c b/src/combat.c index 151290bd4..dde8586fb 100644 --- a/src/combat.c +++ b/src/combat.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/combat.h b/src/combat.h index 46651cb8e..254c109c1 100644 --- a/src/combat.h +++ b/src/combat.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/component.c b/src/component.c index 0b4fb10fb..0184f178b 100644 --- a/src/component.c +++ b/src/component.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/component.h b/src/component.h index 4bf7ac44b..07a9e3f62 100644 --- a/src/component.h +++ b/src/component.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/configuration.c b/src/configuration.c index c1fd987a5..cca1188eb 100644 --- a/src/configuration.c +++ b/src/configuration.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/configuration.h b/src/configuration.h index bf9efc4d2..814edcb10 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/console.c b/src/console.c index 3887c18bc..cb88a1acc 100644 --- a/src/console.c +++ b/src/console.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/console.h b/src/console.h index ae0edd654..03afe0195 100644 --- a/src/console.h +++ b/src/console.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/data.c b/src/data.c index e97266cf1..554bf51ba 100644 --- a/src/data.c +++ b/src/data.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/data.h b/src/data.h index 4bf731454..d9bfc8d2f 100644 --- a/src/data.h +++ b/src/data.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/design.c b/src/design.c index 388de8772..f536d71af 100644 --- a/src/design.c +++ b/src/design.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/design.h b/src/design.h index bd994ad5d..5d6cc4094 100644 --- a/src/design.h +++ b/src/design.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/difficulty.c b/src/difficulty.c index 784f37a8b..51d81e752 100644 --- a/src/difficulty.c +++ b/src/difficulty.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/difficulty.h b/src/difficulty.h index 5e9ad7c07..9f3917ecd 100644 --- a/src/difficulty.h +++ b/src/difficulty.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/display.c b/src/display.c index e08315d0d..164f289b7 100644 --- a/src/display.c +++ b/src/display.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/display.h b/src/display.h index 5851e9ad6..4751b86ab 100644 --- a/src/display.h +++ b/src/display.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/display3d.c b/src/display3d.c index 47a57502e..0bee8471e 100644 --- a/src/display3d.c +++ b/src/display3d.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/display3d.h b/src/display3d.h index 70391cf6d..b0343e883 100644 --- a/src/display3d.h +++ b/src/display3d.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/display3ddef.h b/src/display3ddef.h index e24104300..fd249d7b2 100644 --- a/src/display3ddef.h +++ b/src/display3ddef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/displaydef.h b/src/displaydef.h index b7900e5c9..c0e5c7684 100644 --- a/src/displaydef.h +++ b/src/displaydef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/drive.c b/src/drive.c index 8483ad501..c3e5207ac 100644 --- a/src/drive.c +++ b/src/drive.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/drive.h b/src/drive.h index c069ba2c1..e3e835419 100644 --- a/src/drive.h +++ b/src/drive.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/droid.c b/src/droid.c index 6bfa42328..b57240833 100644 --- a/src/droid.c +++ b/src/droid.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/droid.h b/src/droid.h index 2f98747d0..ad0f0c040 100644 --- a/src/droid.h +++ b/src/droid.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/droiddef.h b/src/droiddef.h index 59382ec1d..de7e25661 100644 --- a/src/droiddef.h +++ b/src/droiddef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/e3demo.c b/src/e3demo.c index c4566d8b2..a7f95926b 100644 --- a/src/e3demo.c +++ b/src/e3demo.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/e3demo.h b/src/e3demo.h index d6867241f..ab20d8c3b 100644 --- a/src/e3demo.h +++ b/src/e3demo.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/edit3d.c b/src/edit3d.c index 562093bfa..118c032fe 100644 --- a/src/edit3d.c +++ b/src/edit3d.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/edit3d.h b/src/edit3d.h index a85cccbf1..d8e56fad9 100644 --- a/src/edit3d.h +++ b/src/edit3d.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/effects.c b/src/effects.c index c9e76ade6..a822cf69b 100644 --- a/src/effects.c +++ b/src/effects.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/effects.h b/src/effects.h index cbf1f1660..0cf86c1b2 100644 --- a/src/effects.h +++ b/src/effects.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/environ.c b/src/environ.c index 081a3ffc3..103f1b7d7 100644 --- a/src/environ.c +++ b/src/environ.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/environ.h b/src/environ.h index c7fa140d6..97f2fa962 100644 --- a/src/environ.h +++ b/src/environ.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/feature.c b/src/feature.c index 68f39118a..36305ec90 100644 --- a/src/feature.c +++ b/src/feature.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/feature.h b/src/feature.h index 966802012..c5bd2c342 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/featuredef.h b/src/featuredef.h index 96d7556d1..af77fdbd9 100644 --- a/src/featuredef.h +++ b/src/featuredef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/formation.c b/src/formation.c index 6549bc8f0..342d8e65c 100644 --- a/src/formation.c +++ b/src/formation.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/formation.h b/src/formation.h index 41fb800f6..4eb3bbbd8 100644 --- a/src/formation.h +++ b/src/formation.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/formationdef.h b/src/formationdef.h index 78d7f22f3..cf9020dde 100644 --- a/src/formationdef.h +++ b/src/formationdef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/fpath.c b/src/fpath.c index e3d0ba3f2..01bb071ab 100644 --- a/src/fpath.c +++ b/src/fpath.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/fpath.h b/src/fpath.h index f884ecb9a..5f472607d 100644 --- a/src/fpath.h +++ b/src/fpath.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/frend.h b/src/frend.h index 31ead82a0..cc7b4cd93 100644 --- a/src/frend.h +++ b/src/frend.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/frontend.c b/src/frontend.c index a364dfc89..037103ea6 100644 --- a/src/frontend.c +++ b/src/frontend.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/frontend.h b/src/frontend.h index 39dc07462..12f08a6a7 100644 --- a/src/frontend.h +++ b/src/frontend.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/function.c b/src/function.c index 9d493926a..87696debb 100644 --- a/src/function.c +++ b/src/function.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/function.h b/src/function.h index b75a051f9..a439f8365 100644 --- a/src/function.h +++ b/src/function.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/functiondef.h b/src/functiondef.h index fa1964aa8..117877f8c 100644 --- a/src/functiondef.h +++ b/src/functiondef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/game.c b/src/game.c index 3b9be2fda..be658882e 100644 --- a/src/game.c +++ b/src/game.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/game.h b/src/game.h index 8031377a2..d1008665a 100644 --- a/src/game.h +++ b/src/game.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/gateway.c b/src/gateway.c index 37da9e76a..42b44df12 100644 --- a/src/gateway.c +++ b/src/gateway.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/gateway.h b/src/gateway.h index a90d516c2..8af50a1e7 100644 --- a/src/gateway.h +++ b/src/gateway.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/geometry.c b/src/geometry.c index 409e38091..9f8b5453f 100644 --- a/src/geometry.c +++ b/src/geometry.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/geometry.h b/src/geometry.h index 7d21c3d71..05b00bc2f 100644 --- a/src/geometry.h +++ b/src/geometry.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/group.c b/src/group.c index 58fd2db26..afac163aa 100644 --- a/src/group.c +++ b/src/group.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/group.h b/src/group.h index 467c2d346..73e3060c1 100644 --- a/src/group.h +++ b/src/group.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/hci.c b/src/hci.c index 18347dd94..6440d295c 100644 --- a/src/hci.c +++ b/src/hci.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/hci.h b/src/hci.h index c0b08f785..6d4412ba7 100644 --- a/src/hci.h +++ b/src/hci.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/ingameop.c b/src/ingameop.c index 98d9b954a..92d559671 100644 --- a/src/ingameop.c +++ b/src/ingameop.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/ingameop.h b/src/ingameop.h index df7fb2234..1678d7ef2 100644 --- a/src/ingameop.h +++ b/src/ingameop.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/init.c b/src/init.c index ad5f923de..899f283d5 100644 --- a/src/init.c +++ b/src/init.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/init.h b/src/init.h index 3f964122d..d4002810c 100644 --- a/src/init.h +++ b/src/init.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intdisplay.c b/src/intdisplay.c index accec87a7..712c4bd7d 100644 --- a/src/intdisplay.c +++ b/src/intdisplay.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intdisplay.h b/src/intdisplay.h index f89ddb614..be5552dd5 100644 --- a/src/intdisplay.h +++ b/src/intdisplay.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intelmap.c b/src/intelmap.c index 4b22930dc..d5618f7d0 100644 --- a/src/intelmap.c +++ b/src/intelmap.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intelmap.h b/src/intelmap.h index ae2d797cd..ddc217a2b 100644 --- a/src/intelmap.h +++ b/src/intelmap.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intfac.h b/src/intfac.h index 5414b090b..427ab1e36 100644 --- a/src/intfac.h +++ b/src/intfac.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intimage.c b/src/intimage.c index b5a3bf544..e72cc42b1 100644 --- a/src/intimage.c +++ b/src/intimage.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intimage.h b/src/intimage.h index 87a019b0a..2e3420d5e 100644 --- a/src/intimage.h +++ b/src/intimage.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intorder.c b/src/intorder.c index 3f6bd71e4..f497c3c9d 100644 --- a/src/intorder.c +++ b/src/intorder.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/intorder.h b/src/intorder.h index 8d3680c38..c456b4353 100644 --- a/src/intorder.h +++ b/src/intorder.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/keybind.c b/src/keybind.c index ada3a6678..b25e52f74 100644 --- a/src/keybind.c +++ b/src/keybind.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/keybind.h b/src/keybind.h index 53c0bef42..6b4b53651 100644 --- a/src/keybind.h +++ b/src/keybind.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/keyedit.c b/src/keyedit.c index 53af03cba..6f3cb95a3 100644 --- a/src/keyedit.c +++ b/src/keyedit.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/keyedit.h b/src/keyedit.h index 9a36edfa0..d81bd3e25 100644 --- a/src/keyedit.h +++ b/src/keyedit.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/keymap.c b/src/keymap.c index 9ad12bf26..a979ea8bb 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/keymap.h b/src/keymap.h index 3a466ab88..c91bceb30 100644 --- a/src/keymap.h +++ b/src/keymap.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/level_lexer.l b/src/level_lexer.l index fe94f6d00..9b20e36ee 100644 --- a/src/level_lexer.l +++ b/src/level_lexer.l @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/levelint.h b/src/levelint.h index f152f761f..78dab258d 100644 --- a/src/levelint.h +++ b/src/levelint.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/levels.c b/src/levels.c index 003089d04..af783f3c0 100644 --- a/src/levels.c +++ b/src/levels.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/levels.h b/src/levels.h index 73a524ecc..a6fed2491 100644 --- a/src/levels.h +++ b/src/levels.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/lighting.c b/src/lighting.c index 83b0f05bd..2e5dbcc68 100644 --- a/src/lighting.c +++ b/src/lighting.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/lighting.h b/src/lighting.h index ee16fba3f..d997fb692 100644 --- a/src/lighting.h +++ b/src/lighting.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/loadsave.c b/src/loadsave.c index 2b9c524b3..70ba53849 100644 --- a/src/loadsave.c +++ b/src/loadsave.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/loadsave.h b/src/loadsave.h index ca13dd2a9..988cc7480 100644 --- a/src/loadsave.h +++ b/src/loadsave.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/loop.c b/src/loop.c index d02a172d3..e8b220ca8 100644 --- a/src/loop.c +++ b/src/loop.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/loop.h b/src/loop.h index d43644645..3383aa3bd 100644 --- a/src/loop.h +++ b/src/loop.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/main.c b/src/main.c index 9b65abf78..379a5be48 100644 --- a/src/main.c +++ b/src/main.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/main.h b/src/main.h index 36fa42b61..3e3c89a84 100644 --- a/src/main.h +++ b/src/main.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/map.c b/src/map.c index 590f95306..be3a8dc3c 100644 --- a/src/map.c +++ b/src/map.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/map.h b/src/map.h index 0b106d70e..1f153125d 100644 --- a/src/map.h +++ b/src/map.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/mapdisplay.c b/src/mapdisplay.c index bdcaadf25..7430964ea 100644 --- a/src/mapdisplay.c +++ b/src/mapdisplay.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/mapdisplay.h b/src/mapdisplay.h index f511399c4..9738af950 100644 --- a/src/mapdisplay.h +++ b/src/mapdisplay.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/mapgrid.cpp b/src/mapgrid.cpp index bea1afc1d..b030ef5c2 100644 --- a/src/mapgrid.cpp +++ b/src/mapgrid.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2010 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/mapgrid.h b/src/mapgrid.h index 40f07c000..3cb33dfe4 100644 --- a/src/mapgrid.h +++ b/src/mapgrid.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/mechanics.c b/src/mechanics.c index ba7e2710b..f73c7a703 100644 --- a/src/mechanics.c +++ b/src/mechanics.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/mechanics.h b/src/mechanics.h index f3a356248..4134c16c7 100644 --- a/src/mechanics.h +++ b/src/mechanics.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/message.c b/src/message.c index 75cdbbbfe..057542992 100644 --- a/src/message.c +++ b/src/message.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/message.h b/src/message.h index b4b111cd8..eae02aec4 100644 --- a/src/message.h +++ b/src/message.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/message_lexer.l b/src/message_lexer.l index 157f0e0b2..f2640a86c 100644 --- a/src/message_lexer.l +++ b/src/message_lexer.l @@ -2,7 +2,7 @@ This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/message_parser.y b/src/message_parser.y index 10dd26393..3c0e9adce 100644 --- a/src/message_parser.y +++ b/src/message_parser.y @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/messagedef.h b/src/messagedef.h index 3a49743a2..1f16f2425 100644 --- a/src/messagedef.h +++ b/src/messagedef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/messagely.h b/src/messagely.h index 40ffb100e..9e0025fa6 100644 --- a/src/messagely.h +++ b/src/messagely.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2008 Giel van Schijndel - Copyright (C) 2008-2009 Warzone Resurrection Project + Copyright (C) 2008-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/miscimd.c b/src/miscimd.c index f2d66db65..80e50c86c 100644 --- a/src/miscimd.c +++ b/src/miscimd.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/miscimd.h b/src/miscimd.h index b34a9e494..381f8964c 100644 --- a/src/miscimd.h +++ b/src/miscimd.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/mission.c b/src/mission.c index c4357b075..1ce11219e 100644 --- a/src/mission.c +++ b/src/mission.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/mission.h b/src/mission.h index 4ef6c9c08..c7af6010e 100644 --- a/src/mission.h +++ b/src/mission.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/missiondef.h b/src/missiondef.h index 8ca804601..0a05b8086 100644 --- a/src/missiondef.h +++ b/src/missiondef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/modding.h b/src/modding.h index 4d8fd9d32..fec3040ac 100644 --- a/src/modding.h +++ b/src/modding.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/move.c b/src/move.c index ebef80770..a07b6cf97 100644 --- a/src/move.c +++ b/src/move.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/move.h b/src/move.h index db9d476ca..a3391f5fa 100644 --- a/src/move.h +++ b/src/move.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/movedef.h b/src/movedef.h index 99a6b0277..b0dde82de 100644 --- a/src/movedef.h +++ b/src/movedef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multibot.c b/src/multibot.c index 5e2de8c86..4ea2692f4 100644 --- a/src/multibot.c +++ b/src/multibot.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multigifts.c b/src/multigifts.c index e7f4d97ec..ac4a0850c 100644 --- a/src/multigifts.c +++ b/src/multigifts.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multigifts.h b/src/multigifts.h index 1e3f8e549..fd50f8e5d 100644 --- a/src/multigifts.h +++ b/src/multigifts.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multiint.c b/src/multiint.c index 42aef0ede..2d6f4acc8 100644 --- a/src/multiint.c +++ b/src/multiint.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multiint.h b/src/multiint.h index d4708ad33..c69c05eb6 100644 --- a/src/multiint.h +++ b/src/multiint.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multijoin.c b/src/multijoin.c index eb30f4252..2c8dfee09 100644 --- a/src/multijoin.c +++ b/src/multijoin.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multijoin.h b/src/multijoin.h index 4a5fe88ba..ff308ed3f 100644 --- a/src/multijoin.h +++ b/src/multijoin.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multilimit.c b/src/multilimit.c index e4711d8d0..74fc1542a 100644 --- a/src/multilimit.c +++ b/src/multilimit.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multilimit.h b/src/multilimit.h index a187cf560..445fd1f72 100644 --- a/src/multilimit.h +++ b/src/multilimit.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multimenu.c b/src/multimenu.c index 408478939..e9cbc724b 100644 --- a/src/multimenu.c +++ b/src/multimenu.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multimenu.h b/src/multimenu.h index fa70d3174..882a2f9ef 100644 --- a/src/multimenu.h +++ b/src/multimenu.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multiopt.c b/src/multiopt.c index 30d021b38..3605e9ccc 100644 --- a/src/multiopt.c +++ b/src/multiopt.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multiplay.c b/src/multiplay.c index 41830d5ce..03088f07f 100644 --- a/src/multiplay.c +++ b/src/multiplay.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multiplay.h b/src/multiplay.h index 9dc54b2c7..a71d9cec2 100644 --- a/src/multiplay.h +++ b/src/multiplay.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multirecv.h b/src/multirecv.h index 4f7b7afce..073cc2414 100644 --- a/src/multirecv.h +++ b/src/multirecv.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multistat.c b/src/multistat.c index ee3b9339e..7e0cc7735 100644 --- a/src/multistat.c +++ b/src/multistat.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multistat.h b/src/multistat.h index 55f650a66..2bf65caeb 100644 --- a/src/multistat.h +++ b/src/multistat.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multistruct.c b/src/multistruct.c index faebc9d38..f1152340e 100644 --- a/src/multistruct.c +++ b/src/multistruct.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/multisync.c b/src/multisync.c index 856b93e81..1d49638a7 100644 --- a/src/multisync.c +++ b/src/multisync.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/objectdef.h b/src/objectdef.h index 5296dd2cf..508c1fcda 100644 --- a/src/objectdef.h +++ b/src/objectdef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/objects.c b/src/objects.c index 93854efd5..bb8869067 100644 --- a/src/objects.c +++ b/src/objects.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/objects.h b/src/objects.h index be8a89a50..6b0d8d138 100644 --- a/src/objects.h +++ b/src/objects.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/objmem.c b/src/objmem.c index b4f452db3..a040971f7 100644 --- a/src/objmem.c +++ b/src/objmem.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/objmem.h b/src/objmem.h index 02e953ae4..e38401be6 100644 --- a/src/objmem.h +++ b/src/objmem.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/oprint.c b/src/oprint.c index 740f5b6ac..42ff370ad 100644 --- a/src/oprint.c +++ b/src/oprint.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/oprint.h b/src/oprint.h index bb145da9c..f9933e2cf 100644 --- a/src/oprint.h +++ b/src/oprint.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/order.c b/src/order.c index e6b2faca0..64fc3e8ef 100644 --- a/src/order.c +++ b/src/order.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/order.h b/src/order.h index f2dc0f32e..7edb3acc0 100644 --- a/src/order.h +++ b/src/order.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/orderdef.h b/src/orderdef.h index fdcad827f..bbe0b7703 100644 --- a/src/orderdef.h +++ b/src/orderdef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/parsetest.c b/src/parsetest.c index 60c007825..a465abe43 100644 --- a/src/parsetest.c +++ b/src/parsetest.c @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include "lib/framework/frame.h" #include "parsetest.h" #include "levels.h" diff --git a/src/parsetest.h b/src/parsetest.h index aa2de1d95..11f45feef 100644 --- a/src/parsetest.h +++ b/src/parsetest.h @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef __INCLUDED_SRC_PARSETEST_H__ #define __INCLUDED_SRC_PARSETEST_H__ diff --git a/src/pointtree.cpp b/src/pointtree.cpp index 348fc6b35..c40774618 100644 --- a/src/pointtree.cpp +++ b/src/pointtree.cpp @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include #include "pointtree.h" #include diff --git a/src/pointtree.h b/src/pointtree.h index b8d9011de..963915e80 100644 --- a/src/pointtree.h +++ b/src/pointtree.h @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef _point_tree_h #define _point_tree_h diff --git a/src/positiondef.h b/src/positiondef.h index 1ca40eb10..48867dab9 100644 --- a/src/positiondef.h +++ b/src/positiondef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/power.c b/src/power.c index 91a9eb6ff..b88051665 100644 --- a/src/power.c +++ b/src/power.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/power.h b/src/power.h index b8d121e39..dec4674f9 100644 --- a/src/power.h +++ b/src/power.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/projectile.c b/src/projectile.c index 0c5850c63..da3f7c00c 100644 --- a/src/projectile.c +++ b/src/projectile.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/projectile.h b/src/projectile.h index 5c2f4681c..22f27763a 100644 --- a/src/projectile.h +++ b/src/projectile.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/projectiledef.h b/src/projectiledef.h index 86e0e7c1e..1b1448cd4 100644 --- a/src/projectiledef.h +++ b/src/projectiledef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/radar.c b/src/radar.c index ca84f0087..6fe3a35a7 100644 --- a/src/radar.c +++ b/src/radar.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/radar.h b/src/radar.h index dfdabdde6..0bf32ac5e 100644 --- a/src/radar.h +++ b/src/radar.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/random.cpp b/src/random.cpp index 88dea93e8..712e59180 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include "random.h" static MersenneTwister gamePseudorandomNumberGenerator; diff --git a/src/random.h b/src/random.h index bfc974e1a..1d2b09bd4 100644 --- a/src/random.h +++ b/src/random.h @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef _RAND_H_ #define _RAND_H_ diff --git a/src/raycast.c b/src/raycast.c index b2f7d633c..090752b96 100644 --- a/src/raycast.c +++ b/src/raycast.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/raycast.h b/src/raycast.h index 06a43a46c..d63c06c04 100644 --- a/src/raycast.h +++ b/src/raycast.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/research.c b/src/research.c index 78fe8c634..52251bd57 100644 --- a/src/research.c +++ b/src/research.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/research.h b/src/research.h index 39960c40f..bfc1a73b7 100644 --- a/src/research.h +++ b/src/research.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/researchdef.h b/src/researchdef.h index d39d64b3b..40192d702 100644 --- a/src/researchdef.h +++ b/src/researchdef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scores.c b/src/scores.c index cf14cf9b6..0830ebd1f 100644 --- a/src/scores.c +++ b/src/scores.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scores.h b/src/scores.h index d47e1c39d..d1d227b3e 100644 --- a/src/scores.h +++ b/src/scores.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptai.c b/src/scriptai.c index 678ed1d1c..cb6943865 100644 --- a/src/scriptai.c +++ b/src/scriptai.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptai.h b/src/scriptai.h index f146b23e5..81e5250e2 100644 --- a/src/scriptai.h +++ b/src/scriptai.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptcb.c b/src/scriptcb.c index c643c658f..b7156d99a 100644 --- a/src/scriptcb.c +++ b/src/scriptcb.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptcb.h b/src/scriptcb.h index ebcfac0dd..629622f40 100644 --- a/src/scriptcb.h +++ b/src/scriptcb.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptextern.c b/src/scriptextern.c index 60a39a270..7962aba80 100644 --- a/src/scriptextern.c +++ b/src/scriptextern.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptextern.h b/src/scriptextern.h index 99f0d65c2..270a4ab45 100644 --- a/src/scriptextern.h +++ b/src/scriptextern.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptfuncs.c b/src/scriptfuncs.c index 85eba00e2..43165a8e6 100644 --- a/src/scriptfuncs.c +++ b/src/scriptfuncs.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptfuncs.h b/src/scriptfuncs.h index 8680c2b77..36c0a739c 100644 --- a/src/scriptfuncs.h +++ b/src/scriptfuncs.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptobj.c b/src/scriptobj.c index 8153aa874..249bc8086 100644 --- a/src/scriptobj.c +++ b/src/scriptobj.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptobj.h b/src/scriptobj.h index 5398d47ae..011be8d89 100644 --- a/src/scriptobj.h +++ b/src/scriptobj.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scripttabs.c b/src/scripttabs.c index 97259b2d8..1a3d3b9d6 100644 --- a/src/scripttabs.c +++ b/src/scripttabs.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scripttabs.h b/src/scripttabs.h index a87274689..210d62caa 100644 --- a/src/scripttabs.h +++ b/src/scripttabs.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptvals.c b/src/scriptvals.c index 4dc1867d3..3cedc73dc 100644 --- a/src/scriptvals.c +++ b/src/scriptvals.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptvals.h b/src/scriptvals.h index df7fc25d0..7dec010f2 100644 --- a/src/scriptvals.h +++ b/src/scriptvals.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptvals_lexer.l b/src/scriptvals_lexer.l index 5c5d68339..8bbcabbe3 100644 --- a/src/scriptvals_lexer.l +++ b/src/scriptvals_lexer.l @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/scriptvals_parser.y b/src/scriptvals_parser.y index 38fa7f30d..0cad0020b 100644 --- a/src/scriptvals_parser.y +++ b/src/scriptvals_parser.y @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/selection.c b/src/selection.c index 79ca97f43..963b266a6 100644 --- a/src/selection.c +++ b/src/selection.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/selection.h b/src/selection.h index 1de217662..e39e8bedb 100644 --- a/src/selection.h +++ b/src/selection.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/seqdisp.c b/src/seqdisp.c index 045ea2e6a..e960823f9 100644 --- a/src/seqdisp.c +++ b/src/seqdisp.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/seqdisp.h b/src/seqdisp.h index 511e8e721..32b428c5e 100644 --- a/src/seqdisp.h +++ b/src/seqdisp.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/stats.c b/src/stats.c index c65cbefca..d22e43fd5 100644 --- a/src/stats.c +++ b/src/stats.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/stats.h b/src/stats.h index 589c68436..c5630cbd4 100644 --- a/src/stats.h +++ b/src/stats.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/statsdef.h b/src/statsdef.h index 64dd7e67d..8e676c958 100644 --- a/src/statsdef.h +++ b/src/statsdef.h @@ -1,21 +1,21 @@ /* -This file is part of Warzone 2100. -Copyright (C) 1999-2004 Eidos Interactive -Copyright (C) 2005-2009 Warzone 2100 Project + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project -Warzone 2100 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. + Warzone 2100 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. -Warzone 2100 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. + Warzone 2100 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 Warzone 2100; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + You should have received a copy of the GNU General Public License + along with Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** \file diff --git a/src/stringdef.h b/src/stringdef.h index d751dc4ec..3d85bad42 100644 --- a/src/stringdef.h +++ b/src/stringdef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/structure.c b/src/structure.c index 979a4e81d..87cd76884 100644 --- a/src/structure.c +++ b/src/structure.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/structure.h b/src/structure.h index 0d5a5a3c9..87de5ef83 100644 --- a/src/structure.h +++ b/src/structure.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/structuredef.h b/src/structuredef.h index f4026500d..6eabfcf67 100644 --- a/src/structuredef.h +++ b/src/structuredef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/terrain.c b/src/terrain.c index 7e84d89ef..bb10915dc 100644 --- a/src/terrain.c +++ b/src/terrain.c @@ -1,6 +1,7 @@ /* This file is part of Warzone 2100. - Copyright (C) 2008 Warzone Resurrection Project + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/terrain.h b/src/terrain.h index 2e1848fea..322757c31 100644 --- a/src/terrain.h +++ b/src/terrain.h @@ -1,6 +1,7 @@ /* This file is part of Warzone 2100. - Copyright (C) 2008 Warzone Resurrection Project + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/text.c b/src/text.c index b381752f7..c06f28fda 100644 --- a/src/text.c +++ b/src/text.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/text.h b/src/text.h index 977a51c6d..559e1d10f 100644 --- a/src/text.h +++ b/src/text.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/texture.c b/src/texture.c index d91b6788b..9137b409f 100644 --- a/src/texture.c +++ b/src/texture.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/texture.h b/src/texture.h index ee6a535f8..f7786a9dc 100644 --- a/src/texture.h +++ b/src/texture.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/transporter.c b/src/transporter.c index cccb4973e..b806f0ec7 100644 --- a/src/transporter.c +++ b/src/transporter.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/transporter.h b/src/transporter.h index 987bf66ff..309c653ce 100644 --- a/src/transporter.h +++ b/src/transporter.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/version.c b/src/version.c index 20cf4eb8b..dc711babb 100644 --- a/src/version.c +++ b/src/version.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/version.h b/src/version.h index 0ee9c9f04..4010f5f36 100644 --- a/src/version.h +++ b/src/version.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2004 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/visibility.c b/src/visibility.c index 3199d8479..5f5be68f2 100644 --- a/src/visibility.c +++ b/src/visibility.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/visibility.h b/src/visibility.h index f27b96f65..d6fa75a66 100644 --- a/src/visibility.h +++ b/src/visibility.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/warcam.c b/src/warcam.c index 499bebf39..3502e4c40 100644 --- a/src/warcam.c +++ b/src/warcam.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/warcam.h b/src/warcam.h index 027275b51..79091acab 100644 --- a/src/warcam.h +++ b/src/warcam.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/warzoneconfig.c b/src/warzoneconfig.c index 89611d26c..593b56461 100644 --- a/src/warzoneconfig.c +++ b/src/warzoneconfig.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/warzoneconfig.h b/src/warzoneconfig.h index 5c8044c7b..a5ab8df9a 100644 --- a/src/warzoneconfig.h +++ b/src/warzoneconfig.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/wavecast.cpp b/src/wavecast.cpp index 6ec4c6961..8eeabe0e7 100644 --- a/src/wavecast.cpp +++ b/src/wavecast.cpp @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include "map.h" #include "wavecast.h" #include diff --git a/src/wavecast.h b/src/wavecast.h index 20a8daaae..a297fe945 100644 --- a/src/wavecast.h +++ b/src/wavecast.h @@ -1,3 +1,22 @@ +/* + This file is part of Warzone 2100. + Copyright (C) 1999-2004 Eidos Interactive + Copyright (C) 2005-2010 Warzone 2100 Project + + Warzone 2100 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. + + Warzone 2100 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 Warzone 2100; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #ifndef _WAVE_CAST_H_ #define _WAVE_CAST_H_ diff --git a/src/weapondef.h b/src/weapondef.h index 89bedb683..6e914aa2c 100644 --- a/src/weapondef.h +++ b/src/weapondef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/wrappers.c b/src/wrappers.c index 14c45d0ff..c75aa7394 100644 --- a/src/wrappers.c +++ b/src/wrappers.c @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/wrappers.h b/src/wrappers.h index 5e5dbc887..501da882c 100644 --- a/src/wrappers.h +++ b/src/wrappers.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/conversion/obj2pie.c b/tools/conversion/obj2pie.c index 69a10d655..e112d9ce2 100644 --- a/tools/conversion/obj2pie.c +++ b/tools/conversion/obj2pie.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/conversion/pie23ds.c b/tools/conversion/pie23ds.c index 4ea62415d..9b030d97f 100644 --- a/tools/conversion/pie23ds.c +++ b/tools/conversion/pie23ds.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/conversion/pie2wzm.c b/tools/conversion/pie2wzm.c index 9841d7c74..5d471e756 100644 --- a/tools/conversion/pie2wzm.c +++ b/tools/conversion/pie2wzm.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/conversion/simplipie.c b/tools/conversion/simplipie.c index afdf8fd63..fdea364b0 100644 --- a/tools/conversion/simplipie.c +++ b/tools/conversion/simplipie.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/display/wzmto3ds.c b/tools/display/wzmto3ds.c index b5aa68ed4..bd410ff27 100644 --- a/tools/display/wzmto3ds.c +++ b/tools/display/wzmto3ds.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/display/wzmutils.c b/tools/display/wzmutils.c index 05f1ab523..ad673146c 100644 --- a/tools/display/wzmutils.c +++ b/tools/display/wzmutils.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/display/wzmutils.h b/tools/display/wzmutils.h index 68ff0c9c8..a44e2b4eb 100644 --- a/tools/display/wzmutils.h +++ b/tools/display/wzmutils.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/display/wzmviewer.c b/tools/display/wzmviewer.c index 6ff2bd34e..2b36b837e 100644 --- a/tools/display/wzmviewer.c +++ b/tools/display/wzmviewer.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/display/wzmviewer.h b/tools/display/wzmviewer.h index 8fe647d7a..87d1186b3 100644 --- a/tools/display/wzmviewer.h +++ b/tools/display/wzmviewer.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/aboutdialog.cpp b/tools/editworld/src/aboutdialog.cpp index 6a18da4af..00cfba093 100644 --- a/tools/editworld/src/aboutdialog.cpp +++ b/tools/editworld/src/aboutdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/autoflagdialog.cpp b/tools/editworld/src/autoflagdialog.cpp index fbb1b40e0..bfb71e5e9 100644 --- a/tools/editworld/src/autoflagdialog.cpp +++ b/tools/editworld/src/autoflagdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/bmphandler.cpp b/tools/editworld/src/bmphandler.cpp index 1a7cc4aeb..45d707f6d 100644 --- a/tools/editworld/src/bmphandler.cpp +++ b/tools/editworld/src/bmphandler.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/bmphandler.h b/tools/editworld/src/bmphandler.h index 6428de538..069aab6c0 100644 --- a/tools/editworld/src/bmphandler.h +++ b/tools/editworld/src/bmphandler.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/brush.cpp b/tools/editworld/src/brush.cpp index f2ad8bb4a..4b596f137 100644 --- a/tools/editworld/src/brush.cpp +++ b/tools/editworld/src/brush.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/brush.h b/tools/editworld/src/brush.h index 03e0f7d4a..f4e40900c 100644 --- a/tools/editworld/src/brush.h +++ b/tools/editworld/src/brush.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/brushprop.cpp b/tools/editworld/src/brushprop.cpp index 743e75630..67a9b89df 100644 --- a/tools/editworld/src/brushprop.cpp +++ b/tools/editworld/src/brushprop.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/brushprop.h b/tools/editworld/src/brushprop.h index 24257f1a7..92989505c 100644 --- a/tools/editworld/src/brushprop.h +++ b/tools/editworld/src/brushprop.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/btedit.cpp b/tools/editworld/src/btedit.cpp index 9b1049683..1e19aeba5 100644 --- a/tools/editworld/src/btedit.cpp +++ b/tools/editworld/src/btedit.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/btedit.h b/tools/editworld/src/btedit.h index 195bedf9e..e61e9c4f5 100644 --- a/tools/editworld/src/btedit.h +++ b/tools/editworld/src/btedit.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/bteditdoc.cpp b/tools/editworld/src/bteditdoc.cpp index 20c83189b..e8422cdac 100644 --- a/tools/editworld/src/bteditdoc.cpp +++ b/tools/editworld/src/bteditdoc.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/bteditdoc.h b/tools/editworld/src/bteditdoc.h index f03cd77ab..d2093bc30 100644 --- a/tools/editworld/src/bteditdoc.h +++ b/tools/editworld/src/bteditdoc.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/bteditview.cpp b/tools/editworld/src/bteditview.cpp index 11b972817..beda7baa8 100644 --- a/tools/editworld/src/bteditview.cpp +++ b/tools/editworld/src/bteditview.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/bteditview.h b/tools/editworld/src/bteditview.h index 8364e9953..02e99adb7 100644 --- a/tools/editworld/src/bteditview.h +++ b/tools/editworld/src/bteditview.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/chnkio.cpp b/tools/editworld/src/chnkio.cpp index 6bb42a583..34340eb63 100644 --- a/tools/editworld/src/chnkio.cpp +++ b/tools/editworld/src/chnkio.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/chnkio.h b/tools/editworld/src/chnkio.h index 0a5004baa..fff7de464 100644 --- a/tools/editworld/src/chnkio.h +++ b/tools/editworld/src/chnkio.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/ddimage.cpp b/tools/editworld/src/ddimage.cpp index c61b92c43..a144c31c5 100644 --- a/tools/editworld/src/ddimage.cpp +++ b/tools/editworld/src/ddimage.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/ddimage.h b/tools/editworld/src/ddimage.h index cf9121a65..c580c9256 100644 --- a/tools/editworld/src/ddimage.h +++ b/tools/editworld/src/ddimage.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/debugprint.cpp b/tools/editworld/src/debugprint.cpp index 8668e9241..9759ac6c7 100644 --- a/tools/editworld/src/debugprint.cpp +++ b/tools/editworld/src/debugprint.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/devmap.h b/tools/editworld/src/devmap.h index df48bc417..120078573 100644 --- a/tools/editworld/src/devmap.h +++ b/tools/editworld/src/devmap.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/dibdraw.cpp b/tools/editworld/src/dibdraw.cpp index 4a1f2065d..aa91d0518 100644 --- a/tools/editworld/src/dibdraw.cpp +++ b/tools/editworld/src/dibdraw.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/dibdraw.h b/tools/editworld/src/dibdraw.h index d2d8e228d..59b842f2b 100644 --- a/tools/editworld/src/dibdraw.h +++ b/tools/editworld/src/dibdraw.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/directx.cpp b/tools/editworld/src/directx.cpp index 42f049a15..105450651 100644 --- a/tools/editworld/src/directx.cpp +++ b/tools/editworld/src/directx.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/directx.h b/tools/editworld/src/directx.h index 618ca5d70..2e5d1254d 100644 --- a/tools/editworld/src/directx.h +++ b/tools/editworld/src/directx.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/expandlimitsdlg.cpp b/tools/editworld/src/expandlimitsdlg.cpp index c287f7c8c..8c8245f95 100644 --- a/tools/editworld/src/expandlimitsdlg.cpp +++ b/tools/editworld/src/expandlimitsdlg.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/expandlimitsdlg.h b/tools/editworld/src/expandlimitsdlg.h index 6bbbdda17..697be7609 100644 --- a/tools/editworld/src/expandlimitsdlg.h +++ b/tools/editworld/src/expandlimitsdlg.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/fileparse.cpp b/tools/editworld/src/fileparse.cpp index 809929548..7ee7c78a9 100644 --- a/tools/editworld/src/fileparse.cpp +++ b/tools/editworld/src/fileparse.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/fileparse.h b/tools/editworld/src/fileparse.h index 9d20098f4..8fb9ee8f2 100644 --- a/tools/editworld/src/fileparse.h +++ b/tools/editworld/src/fileparse.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/gateway.cpp b/tools/editworld/src/gateway.cpp index edaa1cc37..7026d85fc 100644 --- a/tools/editworld/src/gateway.cpp +++ b/tools/editworld/src/gateway.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/gateway.h b/tools/editworld/src/gateway.h index 807e2ba86..ec760541d 100644 --- a/tools/editworld/src/gateway.h +++ b/tools/editworld/src/gateway.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/gatewaydef.h b/tools/editworld/src/gatewaydef.h index 6742dc771..0edf06f28 100644 --- a/tools/editworld/src/gatewaydef.h +++ b/tools/editworld/src/gatewaydef.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/gatewaysup.cpp b/tools/editworld/src/gatewaysup.cpp index 2cc5e3e69..b3bc8954e 100644 --- a/tools/editworld/src/gatewaysup.cpp +++ b/tools/editworld/src/gatewaysup.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/geometry.cpp b/tools/editworld/src/geometry.cpp index b0c934ca9..1291667e4 100644 --- a/tools/editworld/src/geometry.cpp +++ b/tools/editworld/src/geometry.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/geometry.h b/tools/editworld/src/geometry.h index 93bf72866..7d2345988 100644 --- a/tools/editworld/src/geometry.h +++ b/tools/editworld/src/geometry.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/grdland.cpp b/tools/editworld/src/grdland.cpp index 27ff4761e..11c79bdbd 100644 --- a/tools/editworld/src/grdland.cpp +++ b/tools/editworld/src/grdland.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/grdland.h b/tools/editworld/src/grdland.h index 43b19e06b..988322b91 100644 --- a/tools/editworld/src/grdland.h +++ b/tools/editworld/src/grdland.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/heightmap.cpp b/tools/editworld/src/heightmap.cpp index 22056a6cb..f737a8d42 100644 --- a/tools/editworld/src/heightmap.cpp +++ b/tools/editworld/src/heightmap.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/heightmap.h b/tools/editworld/src/heightmap.h index c7b55c571..91e67bd1e 100644 --- a/tools/editworld/src/heightmap.h +++ b/tools/editworld/src/heightmap.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/infodialog.cpp b/tools/editworld/src/infodialog.cpp index 964a93ef5..7d5cc0edb 100644 --- a/tools/editworld/src/infodialog.cpp +++ b/tools/editworld/src/infodialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/initiallimitsdialog.cpp b/tools/editworld/src/initiallimitsdialog.cpp index d5b9c2411..97ceb6ff8 100644 --- a/tools/editworld/src/initiallimitsdialog.cpp +++ b/tools/editworld/src/initiallimitsdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/keyhandler.cpp b/tools/editworld/src/keyhandler.cpp index a09c04844..75631c82a 100644 --- a/tools/editworld/src/keyhandler.cpp +++ b/tools/editworld/src/keyhandler.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/limitsdialog.cpp b/tools/editworld/src/limitsdialog.cpp index 585a3b300..74fe29ba6 100644 --- a/tools/editworld/src/limitsdialog.cpp +++ b/tools/editworld/src/limitsdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/macros.h b/tools/editworld/src/macros.h index fc19a47d9..f9ccc5f0b 100644 --- a/tools/editworld/src/macros.h +++ b/tools/editworld/src/macros.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/mainframe.cpp b/tools/editworld/src/mainframe.cpp index 9a77d253c..39c552f94 100644 --- a/tools/editworld/src/mainframe.cpp +++ b/tools/editworld/src/mainframe.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/mainframe.h b/tools/editworld/src/mainframe.h index d13744f4d..a6f1bb3c8 100644 --- a/tools/editworld/src/mainframe.h +++ b/tools/editworld/src/mainframe.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/mapprefs.cpp b/tools/editworld/src/mapprefs.cpp index 4713e3616..eb6bc47a3 100644 --- a/tools/editworld/src/mapprefs.cpp +++ b/tools/editworld/src/mapprefs.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/mapprefs.h b/tools/editworld/src/mapprefs.h index ac331647a..3bfe7e756 100644 --- a/tools/editworld/src/mapprefs.h +++ b/tools/editworld/src/mapprefs.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/objectproperties.cpp b/tools/editworld/src/objectproperties.cpp index 481875b18..6ded9e3ee 100644 --- a/tools/editworld/src/objectproperties.cpp +++ b/tools/editworld/src/objectproperties.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/objectproperties.h b/tools/editworld/src/objectproperties.h index 3e111095c..6374a4cc3 100644 --- a/tools/editworld/src/objectproperties.h +++ b/tools/editworld/src/objectproperties.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/pasteprefs.cpp b/tools/editworld/src/pasteprefs.cpp index 9ed9dc37c..a882394cd 100644 --- a/tools/editworld/src/pasteprefs.cpp +++ b/tools/editworld/src/pasteprefs.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/pasteprefs.h b/tools/editworld/src/pasteprefs.h index 3c1360b5e..a37d57dda 100644 --- a/tools/editworld/src/pasteprefs.h +++ b/tools/editworld/src/pasteprefs.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/pcxhandler.cpp b/tools/editworld/src/pcxhandler.cpp index b83db8072..6f1898ba4 100644 --- a/tools/editworld/src/pcxhandler.cpp +++ b/tools/editworld/src/pcxhandler.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/pcxhandler.h b/tools/editworld/src/pcxhandler.h index 3630bd06e..9688e3063 100644 --- a/tools/editworld/src/pcxhandler.h +++ b/tools/editworld/src/pcxhandler.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/playermap.cpp b/tools/editworld/src/playermap.cpp index c5e285eb3..091586d9a 100644 --- a/tools/editworld/src/playermap.cpp +++ b/tools/editworld/src/playermap.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/playermap.h b/tools/editworld/src/playermap.h index 3928a2c16..a87a93265 100644 --- a/tools/editworld/src/playermap.h +++ b/tools/editworld/src/playermap.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/resource.h b/tools/editworld/src/resource.h index a68f171b4..f25a6f572 100644 --- a/tools/editworld/src/resource.h +++ b/tools/editworld/src/resource.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/savesegmentdialog.cpp b/tools/editworld/src/savesegmentdialog.cpp index d519b94f9..04bcda141 100644 --- a/tools/editworld/src/savesegmentdialog.cpp +++ b/tools/editworld/src/savesegmentdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/stdafx.h b/tools/editworld/src/stdafx.h index 7d77bd10c..e29e6c7f0 100644 --- a/tools/editworld/src/stdafx.h +++ b/tools/editworld/src/stdafx.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/tdview.cpp b/tools/editworld/src/tdview.cpp index e3c781396..5fddfb140 100644 --- a/tools/editworld/src/tdview.cpp +++ b/tools/editworld/src/tdview.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/tdview.h b/tools/editworld/src/tdview.h index afde704d5..37b4f6a42 100644 --- a/tools/editworld/src/tdview.h +++ b/tools/editworld/src/tdview.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/textsel.cpp b/tools/editworld/src/textsel.cpp index b4650e69b..32064edbb 100644 --- a/tools/editworld/src/textsel.cpp +++ b/tools/editworld/src/textsel.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/textsel.h b/tools/editworld/src/textsel.h index 766a6ce5a..bc7d6cbe9 100644 --- a/tools/editworld/src/textsel.h +++ b/tools/editworld/src/textsel.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/textureprefs.cpp b/tools/editworld/src/textureprefs.cpp index c3e40574e..417169836 100644 --- a/tools/editworld/src/textureprefs.cpp +++ b/tools/editworld/src/textureprefs.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/textureprefs.h b/tools/editworld/src/textureprefs.h index 3d1ef7ff1..8f07ea7b1 100644 --- a/tools/editworld/src/textureprefs.h +++ b/tools/editworld/src/textureprefs.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/textureview.cpp b/tools/editworld/src/textureview.cpp index a097d5675..a377a4ff1 100644 --- a/tools/editworld/src/textureview.cpp +++ b/tools/editworld/src/textureview.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/textureview.h b/tools/editworld/src/textureview.h index d24fac73f..83c5583ec 100644 --- a/tools/editworld/src/textureview.h +++ b/tools/editworld/src/textureview.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/tiletypes.cpp b/tools/editworld/src/tiletypes.cpp index 7a52eec02..78d6bec0b 100644 --- a/tools/editworld/src/tiletypes.cpp +++ b/tools/editworld/src/tiletypes.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/tiletypes.h b/tools/editworld/src/tiletypes.h index 37aa963f6..de8f982ac 100644 --- a/tools/editworld/src/tiletypes.h +++ b/tools/editworld/src/tiletypes.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/typedefs.h b/tools/editworld/src/typedefs.h index 21327459d..b1d56f39f 100644 --- a/tools/editworld/src/typedefs.h +++ b/tools/editworld/src/typedefs.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/undoredo.cpp b/tools/editworld/src/undoredo.cpp index d3ec9abce..ad576b843 100644 --- a/tools/editworld/src/undoredo.cpp +++ b/tools/editworld/src/undoredo.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/undoredo.h b/tools/editworld/src/undoredo.h index 71b56bade..651c0780d 100644 --- a/tools/editworld/src/undoredo.h +++ b/tools/editworld/src/undoredo.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wfview.cpp b/tools/editworld/src/wfview.cpp index 45f0f414d..d58e7c606 100644 --- a/tools/editworld/src/wfview.cpp +++ b/tools/editworld/src/wfview.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wfview.h b/tools/editworld/src/wfview.h index 3f8982b68..110d03dcb 100644 --- a/tools/editworld/src/wfview.h +++ b/tools/editworld/src/wfview.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/winapi.cpp b/tools/editworld/src/winapi.cpp index ca2e32c95..f578a9e4a 100644 --- a/tools/editworld/src/winapi.cpp +++ b/tools/editworld/src/winapi.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/winstuff.h b/tools/editworld/src/winstuff.h index b9061d286..4e186b208 100644 --- a/tools/editworld/src/winstuff.h +++ b/tools/editworld/src/winstuff.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/aboutdialog.cpp b/tools/editworld/src/wxDialogs/aboutdialog.cpp index 87d53d704..a503b200a 100644 --- a/tools/editworld/src/wxDialogs/aboutdialog.cpp +++ b/tools/editworld/src/wxDialogs/aboutdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/autoflagdialog.cpp b/tools/editworld/src/wxDialogs/autoflagdialog.cpp index 385f81249..e9b193c34 100644 --- a/tools/editworld/src/wxDialogs/autoflagdialog.cpp +++ b/tools/editworld/src/wxDialogs/autoflagdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/infodialog.cpp b/tools/editworld/src/wxDialogs/infodialog.cpp index 793f816c8..db66e3855 100644 --- a/tools/editworld/src/wxDialogs/infodialog.cpp +++ b/tools/editworld/src/wxDialogs/infodialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/initiallimitsdialog.cpp b/tools/editworld/src/wxDialogs/initiallimitsdialog.cpp index d0ff76afa..9a053d614 100644 --- a/tools/editworld/src/wxDialogs/initiallimitsdialog.cpp +++ b/tools/editworld/src/wxDialogs/initiallimitsdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/limitsdialog.cpp b/tools/editworld/src/wxDialogs/limitsdialog.cpp index c4c3a14b0..25bb9e1df 100644 --- a/tools/editworld/src/wxDialogs/limitsdialog.cpp +++ b/tools/editworld/src/wxDialogs/limitsdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/main.cpp b/tools/editworld/src/wxDialogs/main.cpp index 4eee96a84..d9781c4e0 100644 --- a/tools/editworld/src/wxDialogs/main.cpp +++ b/tools/editworld/src/wxDialogs/main.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/mainframe.cpp b/tools/editworld/src/wxDialogs/mainframe.cpp index b35a3cb5f..dafb6211f 100644 --- a/tools/editworld/src/wxDialogs/mainframe.cpp +++ b/tools/editworld/src/wxDialogs/mainframe.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/numtextval.cpp b/tools/editworld/src/wxDialogs/numtextval.cpp index b63de052e..42c813f3e 100644 --- a/tools/editworld/src/wxDialogs/numtextval.cpp +++ b/tools/editworld/src/wxDialogs/numtextval.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 2007 Giel van Schijndel - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/editworld/src/wxDialogs/savesegmentdialog.cpp b/tools/editworld/src/wxDialogs/savesegmentdialog.cpp index 29e977b56..78adefccf 100644 --- a/tools/editworld/src/wxDialogs/savesegmentdialog.cpp +++ b/tools/editworld/src/wxDialogs/savesegmentdialog.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/map/mapload.h b/tools/map/mapload.h index 292036112..977e81b54 100644 --- a/tools/map/mapload.h +++ b/tools/map/mapload.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/imd.cpp b/tools/pietoaster/imd.cpp index 83ac5c0c9..fa8d5d58f 100644 --- a/tools/pietoaster/imd.cpp +++ b/tools/pietoaster/imd.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/imd.h b/tools/pietoaster/imd.h index 361606448..76aa0b8e4 100644 --- a/tools/pietoaster/imd.h +++ b/tools/pietoaster/imd.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/imdloader.cpp b/tools/pietoaster/imdloader.cpp index ebb91f093..372822498 100644 --- a/tools/pietoaster/imdloader.cpp +++ b/tools/pietoaster/imdloader.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/imdloader.h b/tools/pietoaster/imdloader.h index 5bf07fb3e..ede88408c 100644 --- a/tools/pietoaster/imdloader.h +++ b/tools/pietoaster/imdloader.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/macros.h b/tools/pietoaster/macros.h index 58e69e597..2588b9894 100644 --- a/tools/pietoaster/macros.h +++ b/tools/pietoaster/macros.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/pie_types.h b/tools/pietoaster/pie_types.h index 859f3a5bb..837104ff8 100644 --- a/tools/pietoaster/pie_types.h +++ b/tools/pietoaster/pie_types.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/texture.cpp b/tools/pietoaster/texture.cpp index 7980da280..6abbaddec 100644 --- a/tools/pietoaster/texture.cpp +++ b/tools/pietoaster/texture.cpp @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/texture.h b/tools/pietoaster/texture.h index 917edbd1d..6c4d42b9d 100644 --- a/tools/pietoaster/texture.h +++ b/tools/pietoaster/texture.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1999-2004 Eidos Interactive - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/pietoaster/wzglobal.h b/tools/pietoaster/wzglobal.h index f76a16933..424fcbecf 100644 --- a/tools/pietoaster/wzglobal.h +++ b/tools/pietoaster/wzglobal.h @@ -1,7 +1,7 @@ /* This file is part of Warzone 2100. Copyright (C) 1992-2007 Trolltech ASA. - Copyright (C) 2005-2009 Warzone Resurrection Project + Copyright (C) 2005-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/qwzm/wzmutils.c b/tools/qwzm/wzmutils.c index 3e0653358..d16151902 100644 --- a/tools/qwzm/wzmutils.c +++ b/tools/qwzm/wzmutils.c @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tools/qwzm/wzmutils.h b/tools/qwzm/wzmutils.h index 9a443dd27..b08c12571 100644 --- a/tools/qwzm/wzmutils.h +++ b/tools/qwzm/wzmutils.h @@ -1,6 +1,6 @@ /* This file is part of Warzone 2100. - Copyright (C) 2007-2009 Warzone Resurrection Project + Copyright (C) 2007-2010 Warzone 2100 Project Warzone 2100 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by From da445cd536121ca8b4c98a1d0453d66c14d03d45 Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Tue, 27 Jul 2010 05:52:37 +0000 Subject: [PATCH 20/24] Make some text alignment fixes that got left out of r11230. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11301 4a71c877-e1ca-e34f-864e-861f7616d084 --- lib/widget/editbox.c | 2 +- src/console.c | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/widget/editbox.c b/lib/widget/editbox.c index cb27798ec..2956f8ad7 100644 --- a/lib/widget/editbox.c +++ b/lib/widget/editbox.c @@ -731,7 +731,7 @@ void editBoxDisplay(WIDGET *psWidget, UDWORD xOffset, UDWORD yOffset, PIELIGHT * // if(psEdBox->pFontDisplay) { // psEdBox->pFontDisplay(fx,fy, pPrint); // } else { - iV_DrawText(utf, fx, fy+2); + iV_DrawText(utf, fx, fy); // } free(utf); *pInsPoint = ch; diff --git a/src/console.c b/src/console.c index cb88a1acc..ee3cb1a4b 100644 --- a/src/console.c +++ b/src/console.c @@ -653,11 +653,6 @@ void displayConsoleMessages( void ) MesY = iV_DrawFormattedText(psMessage->text, mainConsole.topX, MesY, mainConsole.width, psMessage->JustifyType); - if (!bTextBoxActive) - { - MesY -= 3; // make them fit inside the chat box - } - /* Move on */ ++numProcessed; } From 320a2184420f0791d4d36d040e7fd62d157bf6f4 Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Tue, 27 Jul 2010 07:58:08 +0000 Subject: [PATCH 21/24] Fix a bug that caused T2 and T3 maps to load in T1 mode. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11304 4a71c877-e1ca-e34f-864e-861f7616d084 --- src/levels.c | 2 +- src/multiopt.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/levels.c b/src/levels.c index af783f3c0..e592a3fac 100644 --- a/src/levels.c +++ b/src/levels.c @@ -151,7 +151,7 @@ LEVEL_DATASET* levFindDataSet(const char* name) if ((strncmp(psNewLevel->pName, "Sk-", 3) == 0 && strcmp(psNewLevel->pName+3, name) == 0) || (strncmp(psNewLevel->pName, "Sk-", 3) == 0 && - strcmp(psNewLevel->pName+strlen(name)-3-3, "-T1") && + strcmp(psNewLevel->pName+strlen(name)-3-3, "-T1") == 0 && strncmp(psNewLevel->pName+3, name, strlen(name)-3) == 0)) { return psNewLevel; diff --git a/src/multiopt.c b/src/multiopt.c index 3605e9ccc..59e0dd198 100644 --- a/src/multiopt.c +++ b/src/multiopt.c @@ -131,7 +131,7 @@ static BOOL checkGameWdg(const char *nm) (strncmp(lev->pName, "Sk-", 3) == 0 && strcmp(lev->pName+3, nm) == 0) || (strncmp(lev->pName, "Sk-", 3) == 0 && - strcmp(lev->pName+strlen(nm)-3-3, "-T1") && + strcmp(lev->pName+strlen(nm)-3-3, "-T1") == 0 && strncmp(lev->pName+3, nm, strlen(nm)-3) == 0)) { return true; From 7b3dce75dfa48be88133a6205192f18022c27f86 Mon Sep 17 00:00:00 2001 From: Christian Ohm Date: Tue, 27 Jul 2010 16:11:04 +0000 Subject: [PATCH 22/24] Simplify buildingDamaged(). Prevents a possible division by zero, closes #2008. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11307 4a71c877-e1ca-e34f-864e-861f7616d084 --- src/display.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/display.c b/src/display.c index 164f289b7..96ec94af1 100644 --- a/src/display.c +++ b/src/display.c @@ -3058,15 +3058,7 @@ SELECTION_TYPE selectionClass; /* Just returns true if the building's present body points aren't 100 percent */ static BOOL buildingDamaged(STRUCTURE *psStructure) { - //if( PERCENT(psStructure->body , psStructure->baseBodyPoints ) < 100) - if( PERCENT(psStructure->body , structureBody(psStructure)) < 100) - { - return(true); - } - else - { - return(false); - } + return psStructure->body < structureBody(psStructure); } /*Looks through the list of selected players droids to see if one is a repair droid*/ From 1bf4d64a0c3556577e6e7c8d97f2882eaa894d47 Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Tue, 27 Jul 2010 19:50:41 +0000 Subject: [PATCH 23/24] Fix loading some maps in T1 mode. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11309 4a71c877-e1ca-e34f-864e-861f7616d084 --- src/levels.c | 4 ++-- src/multiopt.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/levels.c b/src/levels.c index e592a3fac..e80514a86 100644 --- a/src/levels.c +++ b/src/levels.c @@ -151,8 +151,8 @@ LEVEL_DATASET* levFindDataSet(const char* name) if ((strncmp(psNewLevel->pName, "Sk-", 3) == 0 && strcmp(psNewLevel->pName+3, name) == 0) || (strncmp(psNewLevel->pName, "Sk-", 3) == 0 && - strcmp(psNewLevel->pName+strlen(name)-3-3, "-T1") == 0 && - strncmp(psNewLevel->pName+3, name, strlen(name)-3) == 0)) + strcmp(psNewLevel->pName+strlen(name)+3, "-T1") == 0 && + strncmp(psNewLevel->pName+3, name, strlen(name)) == 0)) { return psNewLevel; } diff --git a/src/multiopt.c b/src/multiopt.c index 59e0dd198..d0f8ce343 100644 --- a/src/multiopt.c +++ b/src/multiopt.c @@ -131,8 +131,8 @@ static BOOL checkGameWdg(const char *nm) (strncmp(lev->pName, "Sk-", 3) == 0 && strcmp(lev->pName+3, nm) == 0) || (strncmp(lev->pName, "Sk-", 3) == 0 && - strcmp(lev->pName+strlen(nm)-3-3, "-T1") == 0 && - strncmp(lev->pName+3, nm, strlen(nm)-3) == 0)) + strcmp(lev->pName+strlen(nm)+3, "-T1") == 0 && + strncmp(lev->pName+3, nm, strlen(nm)) == 0)) { return true; } From 3f69367f3a96e0152e166f1fc881c42ef095433f Mon Sep 17 00:00:00 2001 From: dak180 Date: Thu, 29 Jul 2010 20:07:35 +0000 Subject: [PATCH 24/24] Add dSYM bundles for maximum symbolication. http://bitbucket.org/boredzo/symbolicator can be used to symbolicate crash logs from people without dSYM bundles. git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@11313 4a71c877-e1ca-e34f-864e-861f7616d084 --- macosx/Warzone.xcodeproj/project.pbxproj | 2 +- macosx/configs/Project-All.xcconfig | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/macosx/Warzone.xcodeproj/project.pbxproj b/macosx/Warzone.xcodeproj/project.pbxproj index 4b485f9e1..8813c7b56 100644 --- a/macosx/Warzone.xcodeproj/project.pbxproj +++ b/macosx/Warzone.xcodeproj/project.pbxproj @@ -4067,7 +4067,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/bash; - shellScript = "# Config\nsimgfl=\"http://downloads.sourceforge.net/project/warzone2100/build-tools/mac/wztemplate.sparseimage\"\nsimgflnme=\"wztemplate.sparseimage\"\nsimgflmd5=\"da10e06f2b9b2b565e70dd8e98deaaad\"\nsequence=\"http://downloads.sourceforge.net/project/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz\"\nsequencenme=\"sequences.wz\"\nsequencelo=\"http://downloads.sourceforge.net/project/warzone2100/warzone2100/Videos/2.2/low-quality-en/sequences.wz\"\nsequencelonme=\"sequences-lo.wz\"\nrelbuild=\"build/Release/Warzone.app\"\ndmgout=\"build/dmgout\"\n\n# Fail if not release\nif [ ! -d \"$relbuild\" ]; then\n echo \"error: This should only be run as Release\" >&2\n exit 1\nfi\n\n# Make a dir and get the sparseimage\nmkdir -p \"$dmgout\"\ncd \"$dmgout\"\nif [ ! -f \"$simgflnme\" ]; then\n echo \"Fetching $simgfl\"\n if ! curl -L -O --connect-timeout \"30\" \"$simgfl\"; then\n echo \"error: Unable to fetch $simgfl\" >&2\n exit 1\n fi\nelse\n echo \"$simgflnme already exists, skipping\"\nfi\n\n# Get the sequences\n\n# Comment out the following to skip the high qual seq\n# if [ ! -f \"$sequencenme\" ]; then\n# echo \"Fetching $sequencenme\"\n# if [ -f \"${HOME}/Library/Application Support/Warzone 2100 Trunk/sequences.wz\" ]; then\n# cp \"${HOME}/Library/Application Support/Warzone 2100 Trunk/sequences.wz\" \"$sequencenme\"\n# elif ! curl -L --connect-timeout \"30\" -o \"$sequencenme\" \"$sequence\"; then\n# echo \"error: Unable to fetch $sequence\" >&2\n# exit 1\n# fi\n# else\n# echo \"$sequencenme already exists, skipping\"\n# fi\n#\n\n# Comment out the following to skip the low qual seq\nif [ ! -f \"$sequencelonme\" ]; then\n echo \"Fetching $sequencelonme\"\n if [ -f \"${HOME}/Applications/Build/wz2100/dmgmaker/sequences-lo.wz\" ]; then\n cp \"${HOME}/Applications/Build/wz2100/dmgmaker/sequences-lo.wz\" \"$sequencelonme\"\n elif [ -f \"${HOME}/Library/Application Support/Warzone 2100 Trunk/sequences-lq.wz\" ]; then\n cp \"${HOME}/Library/Application Support/Warzone 2100 Trunk/sequences-lq.wz\" \"$sequencelonme\"\n elif ! curl -L --connect-timeout \"30\" -o \"$sequencelonme\" \"$sequencelo\"; then\n echo \"error: Unable to fetch $sequencelo\" >&2\n exit 1\n fi\nelse\n echo \"$sequencelonme already exists, skipping\"\nfi\n# \n\n# Copy over the app\ncd ../../\necho \"Copying the app cleanly.\"\nrm -r -f $dmgout/Warzone.app\nif ! tar -c --exclude '.svn' --exclude 'Makefile*' --exclude 'makefile*' --exclude '.DS_Store' -C build/Release Warzone.app | tar -xC $dmgout; then\n echo \"error: Unable to copy the app\" >&2\n exit 1\nfi\ncd \"$dmgout\"\n\n# mkredist.bash\n\ncd Warzone.app/Contents/Resources/data/\n\necho \"== Compressing base.wz ==\"\nif [ -d base/ ]; then\n cd base/\n zip -r ../base.wz *\n cd ..\n rm -rf base/\nfi\n\necho \"== Compressing mp.wz ==\"\nif [ -d mp/ ]; then\n cd mp/\n zip -r ../mp.wz *\n cd ..\n rm -rf mp/\nfi\n\ncd mods/\n\nmodlst=`ls -1`\nfor moddr in ${modlst}; do\n if [ -d ${moddr} ]; then\n cd ${moddr}\n if [ \"${moddr}\" = \"campaign\" ]; then\n sbtyp=\".cam\"\n elif [ \"${moddr}\" = \"global\" ]; then\n sbtyp=\".gmod\"\n elif [ \"${moddr}\" = \"multiplay\" ]; then\n sbtyp=\".mod\"\n elif [ \"${moddr}\" = \"music\" ]; then\n sbtyp=\".music\"\n else\n sbtyp=\"\"\n fi\n modlstd=`ls -1`\n for modwz in ${modlstd}; do\n if [ -d ${modwz} ]; then\n echo \"== Compressing ${modwz}${sbtyp}.wz ==\"\n cd ${modwz}\n zip -r ../${modwz}${sbtyp}.wz *\n cd ..\n rm -rf \"${modwz}/\"\n fi\n done\n cd ..\n fi\ndone\n\ncd ../../../../../\n\nrm -r -f ./out ./temp\nmkdir temp/\nmkdir out/\n\necho \"== Creating DMG ==\"\ncp wztemplate.sparseimage temp/wztemplatecopy.sparseimage\nhdiutil resize -size 150m temp/wztemplatecopy.sparseimage\nmountpt=`hdiutil mount temp/wztemplatecopy.sparseimage | tr -d \"\\t\" | sed -E 's:(/dev/disk[0-9])( +)(/Volumes/Warzone 2100):\\1:'`\ncp -r Warzone.app/* /Volumes/Warzone\\ 2100/Warzone.app\n# hdiutil detach `expr match \"$mountpt\" '\\(^[^ ]*\\)'`\nhdiutil detach \"$mountpt\"\nhdiutil convert temp/wztemplatecopy.sparseimage -format UDZO -o out/warzone2100-novideo.dmg\n\nif [ -f \"$sequencelonme\" ]; then\n echo \"== Creating LQ DMG ==\"\n hdiutil resize -size 350m temp/wztemplatecopy.sparseimage\n mountpt=`hdiutil mount temp/wztemplatecopy.sparseimage | tr -d \"\\t\" | sed -E 's:(/dev/disk[0-9])( +)(/Volumes/Warzone 2100):\\1:'`\n cp sequences-lo.wz /Volumes/Warzone\\ 2100/Warzone.app/Contents/Resources/data/sequences.wz\n # hdiutil detach `expr match \"$mountpt\" '\\(^[^ ]*\\)'`\n hdiutil detach \"$mountpt\"\n hdiutil convert temp/wztemplatecopy.sparseimage -format UDZO -o out/warzone2100-lqvideo.dmg\nelse\n echo \"$sequencelonme does not exist, skipping\"\nfi\n\n\nif [ -f \"$sequencenme\" ]; then\n echo \"== Creating HQ DMG ==\"\n hdiutil resize -size 700m temp/wztemplatecopy.sparseimage\n mountpt=`hdiutil mount temp/wztemplatecopy.sparseimage | tr -d \"\\t\" | sed -E 's:(/dev/disk[0-9])( +)(/Volumes/Warzone 2100):\\1:'`\n rm /Volumes/Warzone\\ 2100/Warzone.app/Contents/Resources/data/sequences.wz\n cp sequences.wz /Volumes/Warzone\\ 2100/Warzone.app/Contents/Resources/data/sequences.wz\n hdiutil detach \"$mountpt\"\n hdiutil convert temp/wztemplatecopy.sparseimage -format UDZO -o out/warzone2100-hqvideo.dmg\nelse\n echo \"$sequencenme does not exist, skipping\"\nfi\n\necho \"== Cleaning up ==\"\nrm -f temp/wztemplatecopy.sparseimage\nrmdir temp/\n\n# Open the dir\nopen \"out\"\n\nexit 0"; + shellScript = "# Config\nsimgfl=\"http://downloads.sourceforge.net/project/warzone2100/build-tools/mac/wztemplate.sparseimage\"\nsimgflnme=\"wztemplate.sparseimage\"\nsimgflmd5=\"da10e06f2b9b2b565e70dd8e98deaaad\"\nsequence=\"http://downloads.sourceforge.net/project/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz\"\nsequencenme=\"sequences.wz\"\nsequencelo=\"http://downloads.sourceforge.net/project/warzone2100/warzone2100/Videos/2.2/low-quality-en/sequences.wz\"\nsequencelonme=\"sequences-lo.wz\"\nrelbuild=\"build/Release/\"\ndmgout=\"build/dmgout\"\n\n# Fail if not release\nif [ ! -d \"${relbuild}Warzone.app\" ]; then\n echo \"error: This should only be run as Release\" >&2\n exit 1\nfi\n\n# Make a dir and get the sparseimage\nmkdir -p \"$dmgout\"\ncd \"$dmgout\"\nif [ ! -f \"$simgflnme\" ]; then\n echo \"Fetching $simgfl\"\n if ! curl -L -O --connect-timeout \"30\" \"$simgfl\"; then\n echo \"error: Unable to fetch $simgfl\" >&2\n exit 1\n fi\nelse\n echo \"$simgflnme already exists, skipping\"\nfi\n\n# Get the sequences\n\n# Comment out the following to skip the high qual seq\n# if [ ! -f \"$sequencenme\" ]; then\n# echo \"Fetching $sequencenme\"\n# if [ -f \"${HOME}/Library/Application Support/Warzone 2100 Trunk/sequences.wz\" ]; then\n# cp \"${HOME}/Library/Application Support/Warzone 2100 Trunk/sequences.wz\" \"$sequencenme\"\n# elif ! curl -L --connect-timeout \"30\" -o \"$sequencenme\" \"$sequence\"; then\n# echo \"error: Unable to fetch $sequence\" >&2\n# exit 1\n# fi\n# else\n# echo \"$sequencenme already exists, skipping\"\n# fi\n#\n\n# Comment out the following to skip the low qual seq\nif [ ! -f \"$sequencelonme\" ]; then\n echo \"Fetching $sequencelonme\"\n if [ -f \"${HOME}/Applications/Build/wz2100/dmgmaker/sequences-lo.wz\" ]; then\n cp \"${HOME}/Applications/Build/wz2100/dmgmaker/sequences-lo.wz\" \"$sequencelonme\"\n elif [ -f \"${HOME}/Library/Application Support/Warzone 2100 Trunk/sequences-lq.wz\" ]; then\n cp \"${HOME}/Library/Application Support/Warzone 2100 Trunk/sequences-lq.wz\" \"$sequencelonme\"\n elif ! curl -L --connect-timeout \"30\" -o \"$sequencelonme\" \"$sequencelo\"; then\n echo \"error: Unable to fetch $sequencelo\" >&2\n exit 1\n fi\nelse\n echo \"$sequencelonme already exists, skipping\"\nfi\n# \n\n# Copy over the app\ncd ../../\necho \"Copying the app cleanly.\"\nrm -r -f $dmgout/Warzone.app\nif ! tar -c --exclude '.svn' --exclude 'Makefile*' --exclude 'makefile*' --exclude '.DS_Store' -C build/Release Warzone.app | tar -xC $dmgout; then\n echo \"error: Unable to copy the app\" >&2\n exit 1\nfi\nmkdir -p \"${dmgout}/warzone2100-dSYM\"\ncp -pPR ${relbuild}*.dSYM \"${dmgout}/warzone2100-dSYM\"\ncd \"$dmgout\"\ntar -czf warzone2100-dSYM.tar.gz --exclude '.DS_Store' warzone2100-dSYM\n\n# mkredist.bash\n\ncd Warzone.app/Contents/Resources/data/\n\necho \"== Compressing base.wz ==\"\nif [ -d base/ ]; then\n cd base/\n zip -r ../base.wz *\n cd ..\n rm -rf base/\nfi\n\necho \"== Compressing mp.wz ==\"\nif [ -d mp/ ]; then\n cd mp/\n zip -r ../mp.wz *\n cd ..\n rm -rf mp/\nfi\n\ncd mods/\n\nmodlst=`ls -1`\nfor moddr in ${modlst}; do\n if [ -d ${moddr} ]; then\n cd ${moddr}\n if [ \"${moddr}\" = \"campaign\" ]; then\n sbtyp=\".cam\"\n elif [ \"${moddr}\" = \"global\" ]; then\n sbtyp=\".gmod\"\n elif [ \"${moddr}\" = \"multiplay\" ]; then\n sbtyp=\".mod\"\n elif [ \"${moddr}\" = \"music\" ]; then\n sbtyp=\".music\"\n else\n sbtyp=\"\"\n fi\n modlstd=`ls -1`\n for modwz in ${modlstd}; do\n if [ -d ${modwz} ]; then\n echo \"== Compressing ${modwz}${sbtyp}.wz ==\"\n cd ${modwz}\n zip -r ../${modwz}${sbtyp}.wz *\n cd ..\n rm -rf \"${modwz}/\"\n fi\n done\n cd ..\n fi\ndone\n\ncd ../../../../../\n\nrm -rf ./out ./temp\nmkdir temp/\nmkdir out/\nmv warzone2100-dSYM temp/warzone2100-dSYM\nmv warzone2100-dSYM.tar.gz out/warzone2100-dSYM.tar.gz\n\necho \"== Creating DMG ==\"\ncp wztemplate.sparseimage temp/wztemplatecopy.sparseimage\nhdiutil resize -size 150m temp/wztemplatecopy.sparseimage\nmountpt=`hdiutil mount temp/wztemplatecopy.sparseimage | tr -d \"\\t\" | sed -E 's:(/dev/disk[0-9])( +)(/Volumes/Warzone 2100):\\1:'`\ncp -r Warzone.app/* /Volumes/Warzone\\ 2100/Warzone.app\n# hdiutil detach `expr match \"$mountpt\" '\\(^[^ ]*\\)'`\nhdiutil detach \"$mountpt\"\nhdiutil convert temp/wztemplatecopy.sparseimage -format UDZO -o out/warzone2100-novideo.dmg\n\nif [ -f \"$sequencelonme\" ]; then\n echo \"== Creating LQ DMG ==\"\n hdiutil resize -size 350m temp/wztemplatecopy.sparseimage\n mountpt=`hdiutil mount temp/wztemplatecopy.sparseimage | tr -d \"\\t\" | sed -E 's:(/dev/disk[0-9])( +)(/Volumes/Warzone 2100):\\1:'`\n cp sequences-lo.wz /Volumes/Warzone\\ 2100/Warzone.app/Contents/Resources/data/sequences.wz\n # hdiutil detach `expr match \"$mountpt\" '\\(^[^ ]*\\)'`\n hdiutil detach \"$mountpt\"\n hdiutil convert temp/wztemplatecopy.sparseimage -format UDZO -o out/warzone2100-lqvideo.dmg\nelse\n echo \"$sequencelonme does not exist, skipping\"\nfi\n\n\nif [ -f \"$sequencenme\" ]; then\n echo \"== Creating HQ DMG ==\"\n hdiutil resize -size 700m temp/wztemplatecopy.sparseimage\n mountpt=`hdiutil mount temp/wztemplatecopy.sparseimage | tr -d \"\\t\" | sed -E 's:(/dev/disk[0-9])( +)(/Volumes/Warzone 2100):\\1:'`\n rm /Volumes/Warzone\\ 2100/Warzone.app/Contents/Resources/data/sequences.wz\n cp sequences.wz /Volumes/Warzone\\ 2100/Warzone.app/Contents/Resources/data/sequences.wz\n hdiutil detach \"$mountpt\"\n hdiutil convert temp/wztemplatecopy.sparseimage -format UDZO -o out/warzone2100-hqvideo.dmg\nelse\n echo \"$sequencenme does not exist, skipping\"\nfi\n\necho \"== Cleaning up ==\"\nrm -f temp/wztemplatecopy.sparseimage\n\n# Open the dir\nopen \"out\"\n\nexit 0"; }; 43FA570B10FF8E9B0074E914 /* SDL */ = { isa = PBXShellScriptBuildPhase; diff --git a/macosx/configs/Project-All.xcconfig b/macosx/configs/Project-All.xcconfig index e98759b28..2fb1ca87d 100644 --- a/macosx/configs/Project-All.xcconfig +++ b/macosx/configs/Project-All.xcconfig @@ -3,6 +3,7 @@ ARCHS = $(ARCHS_STANDARD_32_BIT) SDKROOT = macosx10.5 +DEBUG_INFORMATION_FORMAT = dwarf-with-dsym GCC_VERSION = com.apple.compilers.llvm.clang.1_0 MACOSX_DEPLOYMENT_TARGET = 10.4 COPY_PHASE_STRIP = NO