diff --git a/CMakeLists.txt b/CMakeLists.txt index 90de92c9c19..9a5068b9f41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -506,7 +506,7 @@ add_subdirectory(src) # # Install files # -install(DIRECTORY data fonts images sounds DESTINATION ${DATADIR} USE_SOURCE_PERMISSIONS PATTERN ".svn" EXCLUDE ) +install(DIRECTORY data fonts images sounds DESTINATION ${DATADIR} USE_SOURCE_PERMISSIONS PATTERN ".git" EXCLUDE ) # diff --git a/Doxyfile b/Doxyfile index eb8d4cbbf95..4a6424fbf0b 100644 --- a/Doxyfile +++ b/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = "The Battle for Wesnoth" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.11.0+svn +PROJECT_NUMBER = 1.11.0+dev # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/INSTALL b/INSTALL index 21cb2276751..a6c328b2cee 100644 --- a/INSTALL +++ b/INSTALL @@ -56,11 +56,6 @@ will result in a build that is incapable of using multiplayer. See https://gna.org/bugs/index.php?10326 for further details. We recommend using gcc 4 to build Wesnoth. -While building, if you see messages such as "Type 'svnversion --help' for usage.", -you have an outdated Subversion client installed. If you have an outdated Subversion -client installed, you should update it, for output from svnversion is used in -the build processes. - Source Code: You can get the source code from: http://www.wesnoth.org/downloads diff --git a/SConstruct b/SConstruct index 36d0fbbd48f..736518f54d5 100755 --- a/SConstruct +++ b/SConstruct @@ -3,7 +3,7 @@ # SCons build description for the Wesnoth project # # Prerequisites are: -# 1. Subversion command-line client programs svnstatus and svnversion. +# 1. autorevision for getting the repository revision level. # 2. msgfmt(1) for making builds with i18n support. # 3. graph-includes for making the project dependency graph. @@ -443,26 +443,11 @@ for env in [test_env, client_env, env]: if not env['static_test']: test_env.Append(CPPDEFINES = "BOOST_TEST_DYN_LINK") -if os.path.exists('.git') and (file(".git/config").read().find("svn-remote") != -1): - try: - env["svnrev"] = Popen(Split("git svn find-rev refs/remotes/trunk"), stdout=PIPE, stderr=PIPE).communicate()[0].rstrip("\n") - if not env["svnrev"]: - # If you use git svn for one svn path only there's no refs/remotes/trunk, only git svn branch - env["svnrev"] = Popen(Split("git svn find-rev git svn"), stdout=PIPE, stderr=PIPE).communicate()[0].rstrip("\n") - # if git svn can't find HEAD it's a local commit - if Popen(Split("git svn find-rev HEAD"), stdout=PIPE).communicate()[0].rstrip("\n") == "": - env["svnrev"] += "L" - if Popen(Split("git diff --exit-code --quiet")).wait() == 1: - env["svnrev"] += "M" - except: - env["svnrev"] = "" -else: - env["svnrev"] = "" - try: - if call("utils/autorevision -t h > revision.h", shell=True) == 0: - env["have_autorevision"] = True - except: - pass +try: + if call("utils/autorevision -t h > revision.h", shell=True) == 0: + env["have_autorevision"] = True +except: + pass Export(Split("env client_env test_env have_client_prereqs have_server_prereqs have_test_prereqs")) SConscript(dirs = Split("po doc packaging/windows packaging/systemd")) @@ -531,7 +516,7 @@ pythonmodules = Split("wmltools.py wmlparser.py wmldata.py wmliterator.py campai def CopyFilter(fn): "Filter out data-tree things that shouldn't be installed." - return not ".svn" in str(fn) and not "Makefile" in str(fn) + return not ".git" in str(fn) and not "Makefile" in str(fn) env["copy_filter"] = CopyFilter @@ -618,7 +603,7 @@ if 'dist' in COMMAND_LINE_TARGETS: # Speedup, the manifest is expensive def dist_manifest(): "Get an argument list suitable for passing to a distribution archiver." # Start by getting a list of all files under version control - lst = commands.getoutput("svn -v status | grep -v 'data\/test\/.*' | awk '/^[^?]/ {print $4;}'").split() + lst = commands.getoutput("git ls-files | grep -v 'data\/test\/.*' | awk '/^[^?]/ {print $4;}'").split() lst = filter(os.path.isfile, lst) return lst dist_tarball = env.Tar('wesnoth-${version}.tar.bz2', []) diff --git a/attic/wesnoth-pngcrush b/attic/wesnoth-pngcrush deleted file mode 100755 index d6af5a3012b..00000000000 --- a/attic/wesnoth-pngcrush +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/bin/ruby -# Original script -# Copyright (C) 2004 by Crossbow/Miyo -# Some features and Ruby-fication -# Copyright (C) 2005 by Isaac Clerencia -# Part of the Battle for Wesnoth Project http://www.wesnoth.org -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License. -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY. -# -# See the COPYING file for more details. -# -# Scipt to strip ICC profiles from all png images and to compress them -# afterwards via optipng -# -# Requirements: ruby, imagemagick, optipng -# HowToUse: start the script from the wesnoth maindir -# 'svn ci' to commit the stuff -# enter a commit message -# enjoy ICC-profile clean and size-optimised png images -# - -require 'md5' - -def sha1sum(file) - MD5.new(open(file).read).hexdigest -end - -checkOld = true - -totalSavedBytes = 0 -totalSavedFiles = 0 - -files = (`find -iname "*.png"`).split("\n") - -files.each { | file| - file = file[2,file.length] - puts "\n* processing #{file}\n" - -# old = "/home/isaac/devel/wesnoth/last/#{file}"; -# if checkOld and File.exists?(old) and sha1sum(file) == sha1sum(old) -# puts " * no change since last release\n"; -# next; -# end - output = `nice -n 19 convert -strip "#{file}" "#{file}.stripped.png"`; -# output = `nice -n 19 pngcrush -brute -q "#{file}.stripped.png" "#{file}.new.png"`; - output = `nice -n 19 optipng -q -o5 -nb -nc -np "#{file}.stripped.png" -out "#{file}.new.png"`; - output = `rm "#{file}.stripped.png"` - File.exists?("#{file}.new.png") or next; - oldSize = File.size(file) - newSize = File.size("#{file}.new.png") - if newSize < oldSize - savedBytes = oldSize - newSize; - totalSavedBytes = totalSavedBytes + savedBytes - totalSavedFiles = totalSavedFiles.succ - output = `mv "#{file}.new.png" -v "#{file}"` - puts ",\nsaved: #{savedBytes} bytes, total saved: #{totalSavedBytes/1024} KiB" - else - File.unlink("#{file}.new.png"); - end -} - -puts "\ntotal saved: #{totalSavedBytes/1024} KiB, #{totalSavedFiles} files\n"; diff --git a/changelog b/changelog index 4a33478ff85..de313f792dd 100644 --- a/changelog +++ b/changelog @@ -1,6 +1,8 @@ -Version 1.11.2+svn: +Version 1.11.2+dev: * Language and i18n: * Updated translations: + * Miscellaneous and bug fixes + Switched to git version control. Version 1.11.2: * Add-ons client: diff --git a/cmake/revision.cmake b/cmake/revision.cmake deleted file mode 100644 index b000e9df9cc..00000000000 --- a/cmake/revision.cmake +++ /dev/null @@ -1,14 +0,0 @@ -if (EXISTS revision.hpp) - file(READ revision.hpp OLD_VERSION) -endif (EXISTS revision.hpp) - -execute_process(COMMAND ${SVNVERSION_EXECUTABLE} -n ${SRC_DIR} - OUTPUT_VARIABLE SVN_VERSION) - -if(SVN_VERSION MATCHES [0-9]+.*) - - if(NOT OLD_VERSION MATCHES ".*\"${SVN_VERSION}\".*") - file(WRITE revision.hpp "#define REVISION \"${SVN_VERSION}\"\n") - endif(NOT OLD_VERSION MATCHES ".*\"${SVN_VERSION}\".*") - -endif(SVN_VERSION MATCHES [0-9]+.*) diff --git a/cmake/update_pot_source_dependencies.cmake b/cmake/update_pot_source_dependencies.cmake index 40b8923d622..df9b72b4162 100644 --- a/cmake/update_pot_source_dependencies.cmake +++ b/cmake/update_pot_source_dependencies.cmake @@ -24,8 +24,8 @@ if(DOMAIN STREQUAL ${DEFAULT_DOMAIN}) COMMAND ${CMAKE_COMMAND} -E touch ${PROJECT_SOURCE_DIR}/po/${DOMAIN}/POTFILES.in - # Find all cpp files which are not in a .svn directory. - COMMAND find src -name .svn -prune -o -name '*cpp' -print | + # Find all cpp files which are not in a .git directory. + COMMAND find src -name .git -prune -o -name '*cpp' -print | sort | while read file\; do # If the file doesn't contain a GETTEXT_DOMAIN @@ -54,8 +54,8 @@ else(DOMAIN STREQUAL ${DEFAULT_DOMAIN}) COMMAND ${CMAKE_COMMAND} -E touch ${PROJECT_SOURCE_DIR}/po/${DOMAIN}/POTFILES.in - # Find all cpp files which are not in a .svn directory. - COMMAND find src -name .svn -prune -o -name '*cpp' -print | + # Find all cpp files which are not in a .git directory. + COMMAND find src -name .git -prune -o -name '*cpp' -print | sort | while read file\; do # If the file contains a GETTEXT_DOMAIN definition for diff --git a/data/core/images/maps/EDITING-HOWTO b/data/core/images/maps/EDITING-HOWTO index 277f30fec39..353f54bb8f6 100644 --- a/data/core/images/maps/EDITING-HOWTO +++ b/data/core/images/maps/EDITING-HOWTO @@ -1,7 +1,4 @@ -The map files in this directory are derived and should not be pixel-edited -directly. To edit the masters, check them out from the resources branch of the -Wesnoth repo: - -svn co http://svn.gna.org/svn/wesnoth/branches/resources/cartography-tools - -and read the file map-howto.txt for directions. +The map files in this directory are derived and should not be +pixel-edited directly. To edit the masters, check them out from the +resources directory of the Wesnoth repo and read the file +map-howto.txt for directions. diff --git a/data/tools/about_cfg_to_wiki b/data/tools/about_cfg_to_wiki index ee45d47301e..220115bbbcd 100755 --- a/data/tools/about_cfg_to_wiki +++ b/data/tools/about_cfg_to_wiki @@ -60,7 +60,7 @@ if __name__ == "__main__": email = entry.get_text_val("email", "") # Mask email names from spammers email = email.replace("@", "@").replace(".", ".") - # Interpret our local conventions for obfuscsting in SVN files + # Interpret our local conventions for obfuscating in repo files email = email.replace("_AT_", "@").replace("_DOT_", ".") section.lines.append((name, comment, wikiuser, email)) if section.title: @@ -77,7 +77,7 @@ __NOEDITSECTION__ In July 2003, '''David White''' released the first version of Wesnoth. Since then, many people have joined the project, contributing in very different ways. -To make any changes to this list, please modify about.cfg in SVN or ask any +To make any changes to this list, please modify about.cfg in the repo or ask any developer to do it for you. """.lstrip()) diff --git a/data/tools/emacs_mode/wesnoth-mode.texi b/data/tools/emacs_mode/wesnoth-mode.texi index 0d844a6f35f..d48f1b01b88 100644 --- a/data/tools/emacs_mode/wesnoth-mode.texi +++ b/data/tools/emacs_mode/wesnoth-mode.texi @@ -3,7 +3,7 @@ @settitle Wesnoth Mode Manual @set VERSION 1.3.5+git -@set WMLVERSION 1.9.6+svn +@set WMLVERSION 1.9.6+dev @set DATE May 2011 @dircategory Emacs diff --git a/data/tools/terrain2wiki.py b/data/tools/terrain2wiki.py index abb6abb37a2..688e75fcf3a 100755 --- a/data/tools/terrain2wiki.py +++ b/data/tools/terrain2wiki.py @@ -16,6 +16,8 @@ except ImportError: print('Please install argparse by running "easy_install argparse"') sys.exit(1) +# Where to get terrain images +terrain_url = "http://svn.gna.org/svn/wesnoth/trunk/data/core/images/terrain/%s.png" def parse_terrain(data): """ @@ -66,7 +68,7 @@ def parse_terrain(data): | %s | %s """ % ( -"http://svn.gna.org/svn/wesnoth/trunk/data/core/images/terrain/%s.png" % (content['editor_image'] if 'editor_image' in content else content['symbol_image']), +terrain_url % (content['editor_image'] if 'editor_image' in content else content['symbol_image']), content['editor_name'][4:-1] if 'editor_name' in content else content['name'][4:-1], content['string'].replace("# wmllint: ignore", "").replace("|", "|"), content['aliasof'].replace("|", "|") if 'aliasof' in content else "", diff --git a/data/tools/wesnoth/README b/data/tools/wesnoth/README index 293a27f7bf4..f085b0a7dfa 100644 --- a/data/tools/wesnoth/README +++ b/data/tools/wesnoth/README @@ -12,10 +12,6 @@ __init__.py campaignserver_client.py textmode-client for uploading + downloding campaigns to the server. -libsvn.py - Library to provide an interface to svn, - The interface is built upon the command line svn tool. - wescamp.py This utility provides two tools * sync a campaign with the version on wescamp (using the packed campaign diff --git a/data/tools/wesnoth/libsvn.py b/data/tools/wesnoth/libsvn.py deleted file mode 100644 index f2802e15d66..00000000000 --- a/data/tools/wesnoth/libsvn.py +++ /dev/null @@ -1,478 +0,0 @@ -# vim: tabstop=4: shiftwidth=4: expandtab: softtabstop=4: autoindent: -# $Id$ -""" - Copyright (C) 2007 by Mark de Wever - Part of the Battle for Wesnoth Project http://www.wesnoth.org/ - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY. - - See the COPYING file for more details. -""" - -""" -This library provides an interface to svn, the interface is build upon -the command line svn tool. -""" - - -# test for escape quotes here and in the server code -# for now added the repr but is it enough? -# FIXME only did it add a few points not every -# call to __execute - -import os, shutil, logging -from subprocess import Popen, PIPE -class error(Exception): - """Base class for exceptions in this module.""" - pass - - -class SVN: - """Initializes a SVN object. - - Checkout the root of the local checkout eg /src/wesnoth - do not include a trailing slash! - """ - def __init__(self, checkout): - - logging.debug("SVN constructor path = '%s'", checkout) - - self.checkout_path = checkout - - """Makes a new checkout. - - repo The repo to checkout eg - http://svn.gna.org/svn/wesnoth/trunk. - returns Nothing. - """ - def checkout(self, repo): - - logging.debug("checkout repo = '%s'", repo) - - out, err = self.__execute(["svn", "co", "--non-interactive", - repo, self.checkout_path]) - - if(err != ""): - raise error("checkout failed with message:" + err) - - logging.debug("checkout output:" + out) - - """Commits the changes. - - After deleting a local file and committing that change the file remains. - msg The commit message. - files Optional list with files/directories to commit if - ommitted all modifications are send. - returns True if committed, False if nothing to commit. - """ - def commit(self, msg, files = None): - - logging.debug("commit msg = '%s' files = '%s' ", msg, files) - - command = ["svn", "commit", "--non-interactive", "-m", msg] - if(files != None): - for file in files: - command += [self.checkout_path +"/" + file] - else: - command += [self.checkout_path] - - # execute - out, err = self.__execute(command) - - if(err != ""): - raise error("commit failed with message:" +err) - elif(out != ""): - logging.debug("commit output:" + out) - return True - else: - # no output nothing committed - logging.debug("commit has no output") - return False - - """Updates the local checkout. - - rev Revision to update to, if ommitted updates to HEAD. - files Optional list of files to update, if ommitted the - checkout is updated. - returns True if update changed files, False otherwise. - """ - def update(self, rev = None, files = None): - - logging.debug("update rev = '%s' files = '%s'", rev, files) - - command = ["svn", "up", "--non-interactive"] - if(rev != None): - command += ["-r", rev] - if(files != None): - command += [self.checkout_path + "/" + f for f in files] - else: - command += [self.checkout_path] - - # execute - out, err = self.__execute(command) - - if(err != ""): - raise error("update failed with message:" + err) - - if(out.count('\n') == 1): - logging.debug("update didn't change anything") - return False - - logging.debug("update output:" + out) - return True - - """Export the current SVN root. - - target Directory to export to, shouldn't exist yet. - returns True no error, False erro. - """ - def export(self, target): - - logging.debug("export to '%s'", target) - - command = ["svn", "export", self.checkout_path, target] - - # execute - out, err = self.__execute(command) - - return (err == "") - - - - """Add an item to the repo. - - The item can either be a file or directory, if the item is already added - this operation is a nop. - - item File or directory to add to svn. - returns Nothing. - """ - def add(self, item): - - logging.debug("add item = '%s'", item) - - self.__svn_add(self.checkout_path + "/" + item) - - """Removes an item from the repo. - - If an item is not in the repo it's silently ignored and the - operation is a nop. - - item File or directory to remove from svn. - returns Nothing. - """ - def remove(self, item): - - logging.debug("remove item = '%s'", item) - - self.__svn_remove(self.checkout_path + "/" + item) - - """Copies local files to an svn checkout. - - src Directory with the source files. - exclude List with names to ignore. - returns True if the copy resulted in a modified checkout, - False otherwise. - """ - def copy_to_svn(self, src, exclude): - - logging.debug("copy_to_svn src = '%s' exclude = '%s'", - src, exclude) - - # Check whether the status of the repo is clean. - out, err = self.__execute(["svn", "st", self.checkout_path]) - - # If not clean or an error bail out. - if(err != ""): - raise error("status failed with message:" + err) - elif(out != ""): - raise error("checout is not clean:" + out) - - # Update. - self.__sync_dir(src, self.checkout_path, False, exclude) - - # Test whether the checkout is clean if not something is modified. - # An error shouldn't occur, since we tested that before. - out, err = self.__execute(["svn", "st", self.checkout_path]) - return (out != "") - - - """Copies files from an svn checkout to a local directory. - - dest Directory to copy to. - exclude List with names to ignore. - returns Nothing. - """ - def copy_from_svn(self, dest, exclude): - - logging.debug("copy_from_svn dest = '%s' exclude = '%s'", - dest, exclude) - - # Check whether the status of the repo is clean. - out, err = self.__execute(["svn", "st", self.checkout_path]) - - # If not clean or an error bail out. - if(err != ""): - raise error("status failed with message:" + err) - elif(out != ""): - raise error("checout is not clean:" + out) - - # Update. - self.__sync_dir(self.checkout_path, dest, True, exclude) - - - -##### PRIVATE ##### - - - - """Add an item to the repo. - - The item can either be a file or directory, if the item is already added - this operation is a nop. - - item File or directory to add to svn. - returns Nothing. - """ - def __svn_add(self, item): - - logging.debug("__svn_add item = '%s'", item) - - # execute (repo not required) - out, err = self.__execute(["svn", "add", item]) - - if(err != ""): - raise error("__svn_add failed with message:" + err) - - """Removes an item from the repo. - - If an item is not in the repo it's silently ignored and the - operation is a nop. - - item File or directory to remove from svn. - returns Nothing. - """ - def __svn_remove(self, item): - - logging.debug("__svn_remove item = '%s'", item) - - # execute (repo not required) - out, err = self.__execute(["svn", "remove", "--non-interactive", item]) - - if(err != ""): - raise error("__svn_remove failed with message:" + err) - - """Syncronizes two directories. - - src The source directory. - dest The destination directory. - src_svn Either the source or the target is a svn checkout - if True the source is, else the destination. - exclude List with names to ignore. - returns Nothing. - """ - def __sync_dir(self, src, dest, src_svn, exclude ): - - logging.debug("__sync_dir src = '%s' dest = '%s'", src, dest) - - # Get the contents of src and dest - src_dirs, src_files = self.__get_dir_contents(src, exclude) - dest_dirs, dest_files = self.__get_dir_contents(dest, exclude) - - # If a directory exists in the src but not in the dest, the entire - # thing needs to be copied recursively. - - # If a directory doesn't exist in the src but does in the dest, the - # entire thing needs to be deleted recursively. - - # If a directory exists in both, it needs to be scanned recursively. - - for dir in src_dirs: - if not os.path.isdir(dest + "/" + dir): - # src only - self.__dir_add(src + "/" + dir, dest + "/" + dir, src_svn, exclude) - else: - # in both - self.__sync_dir(src + "/" + dir, dest + "/" + dir, src_svn, exclude) - - for dir in dest_dirs: - if not os.path.isdir(src + "/" + dir): - # dest only - self.__dir_remove(dest + "/" + dir, not(src_svn)) - - # If a file exists in the src but not in the dest, it needs to be copied. - - # If a file doesn't exist in the src but does in the dest, it needs to be - # deleted. - - # If a file exists in both it needs to be copied. - - for file in src_files: - if not os.path.isfile(dest + "/" + file): - # src only - self.__file_add(src + "/" + file, dest + "/" + file, src_svn) - else: - # in both - self.__file_copy(src + "/" + file, dest + "/" + file) - - for file in dest_files: - if not os.path.isfile(src + "/" + file): - # dest only - self.__file_remove(dest + "/" + file, not(src_svn)) - - """Gets a list with files and directories. - - The function always ignores .svn entries. Items which aren't a directory - are assumed a file. - dir The directory to get the info from. - exclude List with names to ignore. - returns A list with directories and a list with files. - """ - def __get_dir_contents(self, dir, exclude): - - logging.debug("__get_dir_contents dir = '%s' exclude = '%s'", - dir, exclude) - - items = os.listdir(dir) - dirs = [] - files = [] - - for item in items: - - # Ignore .svn dirs. - if(item == ".svn"): - continue - - # Ignore exclude list. - if(exclude != None and item in exclude): - continue - - # An item is either a directory or not, in the latter case it's - # assumed to be a file. - if(os.path.isdir(dir + "/" + item)): - dirs.append(item) - else: - files.append(item) - - return dirs, files - - """Creates a duplicate of a directory. - - The destination directory shouldn't exist. - src The source directory. - dest The destination directory. - src_svn Either the source or the target is a svn checkout - if True the source is, else the destination. - exclude List with names to ignore. - returns Nothing. - """ - def __dir_add(self, src, dest, src_svn, exclude): - - logging.debug("__dir_add src = '%s' dest = '%s' svn_src = '%s' " - + "exclude = '%s'", src, dest, src_svn, exclude) - - # add parent - os.mkdir(dest) - if not src_svn: - self.__svn_add(dest) - - # get sub items - dirs, files = self.__get_dir_contents(src, exclude) - - # copy files - for file in files: - self.__file_add(src + "/" + file, dest + "/" + file, src_svn) - - # copy dirs - for dir in dirs: - self.__dir_add(src + "/" + dir, dest + "/" + dir, src_svn, exclude) - - """Removes a directory. - - file The directory to remove. - is_svn Is the directory in an svn checkout. - returns Nothing. - """ - def __dir_remove(self, dir, is_svn): - - logging.debug("__dir_remove dir = '%s'", dir) - - # Svn takes care of the cleaning up itself so only - # need to remove the directory. - if is_svn: - self.__svn_remove(dir) - else: - shutil.rmtree(dir) - - """Adds a file. - - If src_svn is True it does the same as copy file. - src The source directory. - dest The destination directory. - src_svn Either the source or the target is a svn checkout - if True the source is, else the destination. - returns Nothing. - """ - def __file_add(self, src, dest, src_svn): - - logging.debug("__file_add src = '%s' dest = '%s' src_svn = '%s'", - src, dest, src_svn) - - shutil.copy(src, dest) - - if not src_svn: - self.__svn_add(dest) - - """Copies a file. - - src The source directory. - dest The destination directory. - returns Nothing - """ - def __file_copy(self, src, dest): - - logging.debug("__file_copy src = '%s' dest = '%s'", src, dest) - - shutil.copy(src, dest) - - """Removes a file. - - file The file to remove. - is_svn Is the file in an svn checkout. - returns Nothing. - """ - def __file_remove(self, file, is_svn): - - logging.debug("__file_remove file = '%s' is_svn = '%s'", file, is_svn) - - if is_svn: - self.__svn_remove(file) - else: - os.remove(file) - - """Executes a command. - - command The command to execute - returns stdout, stderr - """ - def __execute(self, command): - - logging.debug("execute command = '%s'", command) - - p = Popen(command, stdout=PIPE, stderr=PIPE, close_fds=True) - out = "" - err = "" - while(p.poll() == None): - out += p.stdout.read() - err += p.stderr.read() - - out += p.stdout.read() - err += p.stderr.read() - - logging.debug("===== stdout ====\n\n\n%s\n\n\n===== stdout ====", out) - logging.debug("===== stderr ====\n\n\n%s\n\n\n===== stderr ====", err) - - return out, err diff --git a/data/tools/wesnoth/wmltools.py b/data/tools/wesnoth/wmltools.py index ea17a6260e4..3560e788cf6 100644 --- a/data/tools/wesnoth/wmltools.py +++ b/data/tools/wesnoth/wmltools.py @@ -31,9 +31,6 @@ def pop_to_top(whoami): sys.stderr.write(whoami + ": must be run from within a Battle " "for Wesnoth source tree.\n") sys.exit(1) - # In case we're looking at a whole-repo checkout in SVN - if os.path.exists("trunk"): - os.chdir("trunk") def string_strip(value): "String-strip the value" @@ -857,50 +854,43 @@ baseindent = " " ## Version-control hooks begin here. # -# Change these if we move away from Subversion +# Not tested since the git transition -if sys.platform.startswith("win"): - mv = "rename" - rm = "del" -else: - mv = "mv" - rm = "rm" - -vcdir = ".svn" +vcdir = ".git" def vcmove(src, dst): "Move a file under version control. Only applied to unmodified files." (path, base) = os.path.split(src) - if os.path.exists(os.path.join(path, ".svn")): - return "svn mv %s %s" % (src, dst) + if os.path.exists(os.path.join(path, ".git")): + return "git mv %s %s" % (src, dst) else: - return mv + " " + src + " " + dst + return "echo 'cannot move %s to %s, .git is missing'" % (src, dst) def vcunmove(src, dst): "Revert the result of a previous move (before commit)." (path, base) = os.path.split(src) - if os.path.exists(os.path.join(path, ".svn")): - return "svn revert %s" % dst # Revert the add at the destination - return rm + " " + dst # Remove the moved copy - return "svn revert %s" % src # Revert the deletion + if os.path.exists(os.path.join(path, ".git")): + return "git checkout %s" % dst # Revert the add at the destination + return "git rm " + dst # Remove the moved copy + return "git checkout %s" % src # Revert the deletion else: - return mv + " " + dst + " " + src + return "echo 'cannot unmove %s from %s, .git is missing'" % (src, dst) def vcdelete(src): "Delete a file under version control." (path, base) = os.path.split(src) - if os.path.exists(os.path.join(path, ".svn")): - return "svn rm %s" % src + if os.path.exists(os.path.join(path, ".git")): + return "git rm %s" % src else: - return rm + " " + src + return "echo 'cannot undelete %s, .git is missing'" % src def vcundelete(src): "Revert the result of a previous delete (before commit)." (path, base) = os.path.split(src) - if os.path.exists(os.path.join(path, ".svn")): - return "svn revert %s" % src # Revert the deletion + if os.path.exists(os.path.join(path, ".git")): + return "git checkout %s" % src # Revert the deletion else: - return "echo 'can't undelete %s, not under version control'" % src + return "echo 'cannot undelete %s, .git is missing'" % src # ## Version-control hooks end here diff --git a/data/tools/wmlmove b/data/tools/wmlmove index 18b4c0087c3..9c17b369019 100755 --- a/data/tools/wmlmove +++ b/data/tools/wmlmove @@ -22,7 +22,7 @@ followed by :: and a unit class. The script generates a sequence of shell commands. These commands will move the unit and all its resources to appropriate places under -the target campaign or core directories. Subversion move commands +the target campaign or core directories. Appropriate VCS move commands will be used on version-controlled files. A resource is considered to belong to a unit (and moves with it) if the diff --git a/doc/doxygen/doxygen.cpp b/doc/doxygen/doxygen.cpp index e3f23856409..f2da39b2e8b 100644 --- a/doc/doxygen/doxygen.cpp +++ b/doc/doxygen/doxygen.cpp @@ -299,13 +299,11 @@ to the project. Before you can join the development team, your work needs to be reviewed by a current developer. It works like this: -you first get the -latest source code +you first get the latest source code and then submit your modified source code as patches to Gna!. -Eventually, you may be given -SVN access. +Eventually, you may be given repository access. One way to contribute is to find an unassigned bug in the bug repository diff --git a/doc/manual/CMakeLists.txt b/doc/manual/CMakeLists.txt index 9b90d71cb25..82110a438c1 100644 --- a/doc/manual/CMakeLists.txt +++ b/doc/manual/CMakeLists.txt @@ -3,7 +3,7 @@ set_directory_properties(PROPERTIES CLEAN_NO_CUSTOM true) install(FILES manual.en.html DESTINATION "${DOCDIR}") install(DIRECTORY images styles DESTINATION "${DOCDIR}" - PATTERN ".svn" EXCLUDE + PATTERN ".git" EXCLUDE ) if(ENABLE_NLS) diff --git a/l10n-spec b/l10n-spec index 4563bb08b64..e65d043cb63 100644 --- a/l10n-spec +++ b/l10n-spec @@ -2,8 +2,8 @@ languages = de en@shaw es fr gd hu it la lt nl pt ru \ sr sr@ijekavian sr@ijekavianlatin sr@latin zh_CN -# We're currently using Subversion. -source-vcs = svn +# We're currently using git +source-vcs = git # Ignore overlay marker in localized filenames when matching with original. ignore-substr = --overlay diff --git a/misc/fortunes/wesnoth b/misc/fortunes/wesnoth index 9e0c49109fd..b331a43e8b1 100644 --- a/misc/fortunes/wesnoth +++ b/misc/fortunes/wesnoth @@ -118,28 +118,6 @@ I imagine this will be fixed before too long. I certainly hope so. I am already % A number of people have noted a striking similarity in the appearance of the dark adepts and the new sprites for the ghosts. Though this is partly due to an intent towards having a consistent visual appearance for the undead faction, it's also because of an desire to have a reliable repository for disobedient adepts. % - Is CIA a bot? - JarisSeagull: it is our personal slave which monitors the svn rep - and it will tell us about all changes - (slaves are nice to have...) - the devs told him he'll get into gsoc if he does that for 3 months - ilor_: you mixed things up: s/months/years - ;) - Ivanovic> I see it's smart enough to keep track of transactions and summarise the commited changes ;-) - JarisSeagull: you see, no bot would be able to do so, only real slaves do this - JarisSeagull: but sometimes our slave is asleep, then you have to kick him to get the latest commits - * Ivanovic kicks CIA-34 - ow - Ivanovic> what do you feed it with so it doesn't die or you are replacing 'em? - JarisSeagull: when it dies, we just use the next clone - Ivanovic> so 33 died so far? - JarisSeagull: we did outsource this to our biotech labs - you have to ask the cia for details - (maybe the kgb knows about it, too) - they are using some strange new approach of something they call "binary life" - but i am just the release bot, so i don't care about those implementation details... - -- #wesnoth-dev, 2008-03-06 -% 01:06 uhm... you can tell me who is the expert on saved games here 01:10 usually it's not so much a matter of an 'expert'. Just a capable programmer who is willing to step up to the plate and dive into the code and work out what is going on. 01:10 you are welcome to try to go for it yourself. :) diff --git a/players_changelog b/players_changelog index 41edbf0a26f..f8f0dffd6c4 100644 --- a/players_changelog +++ b/players_changelog @@ -1,8 +1,8 @@ This is meant to be a concise list of player-visible changes (very minor changes may be omitted). For a complete list of changes, see the main -changelog: http://svn.gna.org/viewcvs/*checkout*/wesnoth/trunk/changelog +changelog. -Version 1.11.2+svn: +Version 1.11.2+dev: * Language and i18n: * Updated translations: diff --git a/po/wesnoth-anl/ar.po b/po/wesnoth-anl/ar.po index b94bae687c7..64c017faee5 100644 --- a/po/wesnoth-anl/ar.po +++ b/po/wesnoth-anl/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-05-26 18:39+0200\n" diff --git a/po/wesnoth-anl/ca.po b/po/wesnoth-anl/ca.po index da9b9ba83e4..56f2d6ce0a8 100644 --- a/po/wesnoth-anl/ca.po +++ b/po/wesnoth-anl/ca.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.5.5+svn\n" +"Project-Id-Version: 1.5.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-10-18 17:10+0200\n" diff --git a/po/wesnoth-anl/fur_IT.po b/po/wesnoth-anl/fur_IT.po index 3d89e515893..b5bc4715cb3 100644 --- a/po/wesnoth-anl/fur_IT.po +++ b/po/wesnoth-anl/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-anl/hr.po b/po/wesnoth-anl/hr.po index 37e412b2bba..ea4ba37112e 100644 --- a/po/wesnoth-anl/hr.po +++ b/po/wesnoth-anl/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-09-01 18:47+0200\n" "PO-Revision-Date: 2012-09-03 17:26+0100\n" diff --git a/po/wesnoth-anl/id.po b/po/wesnoth-anl/id.po index 9e927c2881b..707d234364a 100644 --- a/po/wesnoth-anl/id.po +++ b/po/wesnoth-anl/id.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2011-10-29 12:41+0700\n" diff --git a/po/wesnoth-anl/is.po b/po/wesnoth-anl/is.po index 1fa87955bbe..bf4bcfbc96f 100644 --- a/po/wesnoth-anl/is.po +++ b/po/wesnoth-anl/is.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-04-26 19:29-0000\n" diff --git a/po/wesnoth-anl/ko.po b/po/wesnoth-anl/ko.po index 37356649394..f1a02bb2a9f 100644 --- a/po/wesnoth-anl/ko.po +++ b/po/wesnoth-anl/ko.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2012-04-16 17:13+0900\n" diff --git a/po/wesnoth-anl/lv.po b/po/wesnoth-anl/lv.po index ff4a72f05ad..ffe6f60101b 100644 --- a/po/wesnoth-anl/lv.po +++ b/po/wesnoth-anl/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-05-26 18:39+0200\n" diff --git a/po/wesnoth-anl/mr.po b/po/wesnoth-anl/mr.po index f2d9c973fcd..79bc5b071b4 100644 --- a/po/wesnoth-anl/mr.po +++ b/po/wesnoth-anl/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-12-26 22:20+0100\n" diff --git a/po/wesnoth-anl/pt.po b/po/wesnoth-anl/pt.po index ce123620009..1f686b92467 100644 --- a/po/wesnoth-anl/pt.po +++ b/po/wesnoth-anl/pt.po @@ -6,7 +6,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-08 12:33+0100\n" "PO-Revision-Date: 2013-03-02 21:32+0100\n" diff --git a/po/wesnoth-anl/tl.po b/po/wesnoth-anl/tl.po index 492820e5d8b..6bbd4f48485 100644 --- a/po/wesnoth-anl/tl.po +++ b/po/wesnoth-anl/tl.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2006-05-05 16:30+0200\n" diff --git a/po/wesnoth-anl/vi.po b/po/wesnoth-anl/vi.po index a3dd39a06cd..99173d91726 100644 --- a/po/wesnoth-anl/vi.po +++ b/po/wesnoth-anl/vi.po @@ -7,7 +7,7 @@ # Huynh Yen Loc , 2010, 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2013-03-12 21:26+0800\n" diff --git a/po/wesnoth-anl/zh_TW.po b/po/wesnoth-anl/zh_TW.po index b31ed713805..1ae0495c76f 100644 --- a/po/wesnoth-anl/zh_TW.po +++ b/po/wesnoth-anl/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2010-08-20 15:04+0800\n" diff --git a/po/wesnoth-aoi/ar.po b/po/wesnoth-aoi/ar.po index 100bc88fb95..5ae067727a0 100644 --- a/po/wesnoth-aoi/ar.po +++ b/po/wesnoth-aoi/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-05-26 18:39+0200\n" diff --git a/po/wesnoth-aoi/fur_IT.po b/po/wesnoth-aoi/fur_IT.po index 47e21557887..1814f07b506 100644 --- a/po/wesnoth-aoi/fur_IT.po +++ b/po/wesnoth-aoi/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-04-13 16:22+0200\n" diff --git a/po/wesnoth-aoi/hr.po b/po/wesnoth-aoi/hr.po index 91f4249ff70..03300c9b723 100644 --- a/po/wesnoth-aoi/hr.po +++ b/po/wesnoth-aoi/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-09-01 18:47+0200\n" "PO-Revision-Date: 2012-08-29 10:16+0100\n" diff --git a/po/wesnoth-aoi/is.po b/po/wesnoth-aoi/is.po index fc53cdb04f0..1c4a39b7007 100644 --- a/po/wesnoth-aoi/is.po +++ b/po/wesnoth-aoi/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-04-26 12:38-0000\n" diff --git a/po/wesnoth-aoi/lv.po b/po/wesnoth-aoi/lv.po index aa0488f7857..d5ec7a448d7 100644 --- a/po/wesnoth-aoi/lv.po +++ b/po/wesnoth-aoi/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9.10+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.9.10+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2011-11-12 23:55+0300\n" diff --git a/po/wesnoth-aoi/mr.po b/po/wesnoth-aoi/mr.po index d20e202da1b..27ea54a9847 100644 --- a/po/wesnoth-aoi/mr.po +++ b/po/wesnoth-aoi/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-02-02 07:59+0100\n" diff --git a/po/wesnoth-aoi/vi.po b/po/wesnoth-aoi/vi.po index 279dc373d9e..b5f215b4702 100644 --- a/po/wesnoth-aoi/vi.po +++ b/po/wesnoth-aoi/vi.po @@ -8,7 +8,7 @@ # Phạm Thành Nam , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2013-03-23 13:18+0800\n" diff --git a/po/wesnoth-aoi/zh_TW.po b/po/wesnoth-aoi/zh_TW.po index 92a4578c181..0e1b6cdb71b 100644 --- a/po/wesnoth-aoi/zh_TW.po +++ b/po/wesnoth-aoi/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-05-08 16:09+0800\n" diff --git a/po/wesnoth-did/ar.po b/po/wesnoth-did/ar.po index 260a383a2e7..291571918a4 100644 --- a/po/wesnoth-did/ar.po +++ b/po/wesnoth-did/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-04-13 16:22+0200\n" diff --git a/po/wesnoth-did/en@shaw.po b/po/wesnoth-did/en@shaw.po index ed15c325a8d..efa332a8e3a 100644 --- a/po/wesnoth-did/en@shaw.po +++ b/po/wesnoth-did/en@shaw.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-10-07 15:42+0200\n" diff --git a/po/wesnoth-did/fur_IT.po b/po/wesnoth-did/fur_IT.po index 9d71a106963..2d5a791d1cf 100644 --- a/po/wesnoth-did/fur_IT.po +++ b/po/wesnoth-did/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-04-13 16:22+0200\n" diff --git a/po/wesnoth-did/hr.po b/po/wesnoth-did/hr.po index 7111927f03a..a82242046c6 100644 --- a/po/wesnoth-did/hr.po +++ b/po/wesnoth-did/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-03-06 10:56+0100\n" diff --git a/po/wesnoth-did/is.po b/po/wesnoth-did/is.po index 2811545cfec..3b477293648 100644 --- a/po/wesnoth-did/is.po +++ b/po/wesnoth-did/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-04-26 12:40-0000\n" diff --git a/po/wesnoth-did/lv.po b/po/wesnoth-did/lv.po index 3fd0b09c0e1..bf30e08612b 100644 --- a/po/wesnoth-did/lv.po +++ b/po/wesnoth-did/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-04-13 16:22+0200\n" diff --git a/po/wesnoth-did/mr.po b/po/wesnoth-did/mr.po index 32267bcf742..6067422e34e 100644 --- a/po/wesnoth-did/mr.po +++ b/po/wesnoth-did/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-02-02 07:59+0100\n" diff --git a/po/wesnoth-did/vi.po b/po/wesnoth-did/vi.po index 05e7a896536..1365488e424 100644 --- a/po/wesnoth-did/vi.po +++ b/po/wesnoth-did/vi.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2011-05-04 13:53+0700\n" diff --git a/po/wesnoth-did/zh_TW.po b/po/wesnoth-did/zh_TW.po index b64b6a62e7a..cbd7486471b 100644 --- a/po/wesnoth-did/zh_TW.po +++ b/po/wesnoth-did/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-04-15 22:55+0800\n" diff --git a/po/wesnoth-dm/ar.po b/po/wesnoth-dm/ar.po index 9bae63411b6..1f18976d1b0 100644 --- a/po/wesnoth-dm/ar.po +++ b/po/wesnoth-dm/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-14 16:42+0200\n" diff --git a/po/wesnoth-dm/en@shaw.po b/po/wesnoth-dm/en@shaw.po index f9c54efb2e7..4c3263063cd 100644 --- a/po/wesnoth-dm/en@shaw.po +++ b/po/wesnoth-dm/en@shaw.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-10-07 15:42+0200\n" diff --git a/po/wesnoth-dm/fur_IT.po b/po/wesnoth-dm/fur_IT.po index 9bae63411b6..1f18976d1b0 100644 --- a/po/wesnoth-dm/fur_IT.po +++ b/po/wesnoth-dm/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-14 16:42+0200\n" diff --git a/po/wesnoth-dm/hr.po b/po/wesnoth-dm/hr.po index 7ca892464ba..89465a6497a 100644 --- a/po/wesnoth-dm/hr.po +++ b/po/wesnoth-dm/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-14 16:42+0200\n" diff --git a/po/wesnoth-dm/is.po b/po/wesnoth-dm/is.po index 9bae63411b6..1f18976d1b0 100644 --- a/po/wesnoth-dm/is.po +++ b/po/wesnoth-dm/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-14 16:42+0200\n" diff --git a/po/wesnoth-dm/ja.po b/po/wesnoth-dm/ja.po index fbd393b98ad..f82e096510f 100644 --- a/po/wesnoth-dm/ja.po +++ b/po/wesnoth-dm/ja.po @@ -8,7 +8,7 @@ # msgid "" msgstr "" -"Project-Id-Version: The Battle for Wesnoth 1.9.3+svn\n" +"Project-Id-Version: The Battle for Wesnoth 1.9.3+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-08-05 20:45+0900\n" diff --git a/po/wesnoth-dm/lv.po b/po/wesnoth-dm/lv.po index 45c2f1a0d9f..dea8671297c 100644 --- a/po/wesnoth-dm/lv.po +++ b/po/wesnoth-dm/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-14 16:42+0200\n" diff --git a/po/wesnoth-dm/mr.po b/po/wesnoth-dm/mr.po index 9bae63411b6..1f18976d1b0 100644 --- a/po/wesnoth-dm/mr.po +++ b/po/wesnoth-dm/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-14 16:42+0200\n" diff --git a/po/wesnoth-dm/racv.po b/po/wesnoth-dm/racv.po index 9bae63411b6..1f18976d1b0 100644 --- a/po/wesnoth-dm/racv.po +++ b/po/wesnoth-dm/racv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-14 16:42+0200\n" diff --git a/po/wesnoth-dm/zh_TW.po b/po/wesnoth-dm/zh_TW.po index 1e6d5403bc2..22462003af6 100644 --- a/po/wesnoth-dm/zh_TW.po +++ b/po/wesnoth-dm/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-05-28 00:11+1000\n" diff --git a/po/wesnoth-editor/ar.po b/po/wesnoth-editor/ar.po index 7f7c3e7c520..62521021ea3 100644 --- a/po/wesnoth-editor/ar.po +++ b/po/wesnoth-editor/ar.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.4.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.4.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-07-01 17:35-0000\n" diff --git a/po/wesnoth-editor/ca.po b/po/wesnoth-editor/ca.po index bef6acc2e06..051a27de3bd 100644 --- a/po/wesnoth-editor/ca.po +++ b/po/wesnoth-editor/ca.po @@ -8,7 +8,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.5.5+svn\n" +"Project-Id-Version: 1.5.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-10-18 17:11+0200\n" diff --git a/po/wesnoth-editor/fur_IT.po b/po/wesnoth-editor/fur_IT.po index 58faac0efce..a61eeb105a0 100644 --- a/po/wesnoth-editor/fur_IT.po +++ b/po/wesnoth-editor/fur_IT.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-04-26 13:45+0200\n" diff --git a/po/wesnoth-editor/hr.po b/po/wesnoth-editor/hr.po index 73638aeb2ed..6a6b5adee07 100644 --- a/po/wesnoth-editor/hr.po +++ b/po/wesnoth-editor/hr.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.4+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.4+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-09-03 17:27+0100\n" diff --git a/po/wesnoth-editor/is.po b/po/wesnoth-editor/is.po index 77e77a13f08..5cbc486ac4d 100644 --- a/po/wesnoth-editor/is.po +++ b/po/wesnoth-editor/is.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-05-12 18:51-0000\n" diff --git a/po/wesnoth-editor/ja.po b/po/wesnoth-editor/ja.po index 17fc0ccb088..e1c1cd3729c 100644 --- a/po/wesnoth-editor/ja.po +++ b/po/wesnoth-editor/ja.po @@ -8,7 +8,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.x-SVN\n" +"Project-Id-Version: Battle for Wesnoth 1.7.x-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2010-01-31 12:03+0900\n" diff --git a/po/wesnoth-editor/ko.po b/po/wesnoth-editor/ko.po index 4c953d333a6..e1d16727cf7 100644 --- a/po/wesnoth-editor/ko.po +++ b/po/wesnoth-editor/ko.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-14 21:31+0900\n" diff --git a/po/wesnoth-editor/lv.po b/po/wesnoth-editor/lv.po index 21c536fbf92..5de2bcea890 100644 --- a/po/wesnoth-editor/lv.po +++ b/po/wesnoth-editor/lv.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9.10+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.9.10+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-13 01:09+0300\n" diff --git a/po/wesnoth-editor/mr.po b/po/wesnoth-editor/mr.po index 848bf42d8d3..4f984521d40 100644 --- a/po/wesnoth-editor/mr.po +++ b/po/wesnoth-editor/mr.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-01-30 20:58+0100\n" diff --git a/po/wesnoth-editor/pt.po b/po/wesnoth-editor/pt.po index 588ea33009c..1538225c13b 100644 --- a/po/wesnoth-editor/pt.po +++ b/po/wesnoth-editor/pt.po @@ -6,7 +6,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-02 21:45+0100\n" diff --git a/po/wesnoth-editor/racv.po b/po/wesnoth-editor/racv.po index cd95742ca8c..4ee2249b686 100644 --- a/po/wesnoth-editor/racv.po +++ b/po/wesnoth-editor/racv.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-02-14 12:37+0100\n" diff --git a/po/wesnoth-editor/ro.po b/po/wesnoth-editor/ro.po index a7e02228b0d..e805ecbfdde 100644 --- a/po/wesnoth-editor/ro.po +++ b/po/wesnoth-editor/ro.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-04-10 20:11+0100\n" diff --git a/po/wesnoth-editor/tl.po b/po/wesnoth-editor/tl.po index 1f9941f53e2..761c750308d 100644 --- a/po/wesnoth-editor/tl.po +++ b/po/wesnoth-editor/tl.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-05-08 07:52-0000\n" diff --git a/po/wesnoth-ei/ar.po b/po/wesnoth-ei/ar.po index bd6c95898c4..62fdb53675b 100644 --- a/po/wesnoth-ei/ar.po +++ b/po/wesnoth-ei/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-04-20 12:41+0200\n" diff --git a/po/wesnoth-ei/fur_IT.po b/po/wesnoth-ei/fur_IT.po index 7f676e8ce2b..c515991dd68 100644 --- a/po/wesnoth-ei/fur_IT.po +++ b/po/wesnoth-ei/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-04-20 12:41+0200\n" diff --git a/po/wesnoth-ei/he.po b/po/wesnoth-ei/he.po index b97ff265d31..913791c2037 100644 --- a/po/wesnoth-ei/he.po +++ b/po/wesnoth-ei/he.po @@ -7,7 +7,7 @@ # msgid "" msgstr "" -"Project-Id-Version: wesnoth-ei 1.1-svn\n" +"Project-Id-Version: wesnoth-ei 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-10-14 16:53+0200\n" diff --git a/po/wesnoth-ei/hr.po b/po/wesnoth-ei/hr.po index 259f3642a0f..9606bc33820 100644 --- a/po/wesnoth-ei/hr.po +++ b/po/wesnoth-ei/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-03-02 14:04+0100\n" diff --git a/po/wesnoth-ei/id.po b/po/wesnoth-ei/id.po index 038ad9e3b2d..ad2eb193c4b 100644 --- a/po/wesnoth-ei/id.po +++ b/po/wesnoth-ei/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-16 14:37+0700\n" diff --git a/po/wesnoth-ei/is.po b/po/wesnoth-ei/is.po index f4271d90476..486e307aadf 100644 --- a/po/wesnoth-ei/is.po +++ b/po/wesnoth-ei/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-04-26 12:46-0000\n" diff --git a/po/wesnoth-ei/ja.po b/po/wesnoth-ei/ja.po index 0a9646a5789..004817b6c1d 100644 --- a/po/wesnoth-ei/ja.po +++ b/po/wesnoth-ei/ja.po @@ -13,7 +13,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth svn-trunk\n" +"Project-Id-Version: Battle for Wesnoth dev-trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-05 08:21+0900\n" diff --git a/po/wesnoth-ei/ko.po b/po/wesnoth-ei/ko.po index d7cff606726..869ec4a6e32 100644 --- a/po/wesnoth-ei/ko.po +++ b/po/wesnoth-ei/ko.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-03-10 16:06+0900\n" diff --git a/po/wesnoth-ei/lv.po b/po/wesnoth-ei/lv.po index e4cabaea631..327102a6a5f 100644 --- a/po/wesnoth-ei/lv.po +++ b/po/wesnoth-ei/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-06-18 20:03+0200\n" diff --git a/po/wesnoth-ei/mr.po b/po/wesnoth-ei/mr.po index 9341f06bfba..6e59a99e588 100644 --- a/po/wesnoth-ei/mr.po +++ b/po/wesnoth-ei/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-02-01 18:01+0100\n" diff --git a/po/wesnoth-ei/pt.po b/po/wesnoth-ei/pt.po index 2bb007abed1..0e14400d290 100644 --- a/po/wesnoth-ei/pt.po +++ b/po/wesnoth-ei/pt.po @@ -1,7 +1,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-02 21:49+0100\n" diff --git a/po/wesnoth-ei/ro.po b/po/wesnoth-ei/ro.po index c04f6147a0e..7020b394586 100644 --- a/po/wesnoth-ei/ro.po +++ b/po/wesnoth-ei/ro.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-11-12 21:23+0100\n" diff --git a/po/wesnoth-ei/tl.po b/po/wesnoth-ei/tl.po index d8701a84f28..bc8e7f87f5c 100644 --- a/po/wesnoth-ei/tl.po +++ b/po/wesnoth-ei/tl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-05-05 16:31+0200\n" diff --git a/po/wesnoth-ei/vi.po b/po/wesnoth-ei/vi.po index 3bfd17933ea..eaba0c6c086 100644 --- a/po/wesnoth-ei/vi.po +++ b/po/wesnoth-ei/vi.po @@ -7,7 +7,7 @@ # Huynh Yen Loc , 2010. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2010-09-07 20:12+0700\n" diff --git a/po/wesnoth-help/ar.po b/po/wesnoth-help/ar.po index 0f02f1a638a..b8b263bf11f 100644 --- a/po/wesnoth-help/ar.po +++ b/po/wesnoth-help/ar.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.4.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.4.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-31 16:55-0000\n" diff --git a/po/wesnoth-help/ca.po b/po/wesnoth-help/ca.po index 7a8bffc3665..74c44a554fe 100644 --- a/po/wesnoth-help/ca.po +++ b/po/wesnoth-help/ca.po @@ -12,7 +12,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.6.0+svn\n" +"Project-Id-Version: 1.6.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-03-21 20:49+0100\n" diff --git a/po/wesnoth-help/ca_ES@valencia.po b/po/wesnoth-help/ca_ES@valencia.po index 41bf60c5f1c..03a9be59679 100644 --- a/po/wesnoth-help/ca_ES@valencia.po +++ b/po/wesnoth-help/ca_ES@valencia.po @@ -13,7 +13,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.5.8+svn\n" +"Project-Id-Version: 1.5.8+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-01-31 21:25+0100\n" diff --git a/po/wesnoth-help/hr.po b/po/wesnoth-help/hr.po index 4893a38f3ed..b32b5e3b90e 100644 --- a/po/wesnoth-help/hr.po +++ b/po/wesnoth-help/hr.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.4+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.4+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-08-20 11:37+0100\n" diff --git a/po/wesnoth-help/id.po b/po/wesnoth-help/id.po index 7324f974bcf..46ed32206d9 100644 --- a/po/wesnoth-help/id.po +++ b/po/wesnoth-help/id.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-01-27 22:37+0700\n" diff --git a/po/wesnoth-help/is.po b/po/wesnoth-help/is.po index ecf0555aa98..365697a096d 100644 --- a/po/wesnoth-help/is.po +++ b/po/wesnoth-help/is.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-06-15 15:08-0000\n" diff --git a/po/wesnoth-help/ja.po b/po/wesnoth-help/ja.po index 7f663bf00fa..1f32b2a35ff 100644 --- a/po/wesnoth-help/ja.po +++ b/po/wesnoth-help/ja.po @@ -14,7 +14,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth svn-trunk\n" +"Project-Id-Version: Battle for Wesnoth dev-trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-07-09 05:15+0900\n" diff --git a/po/wesnoth-help/ko.po b/po/wesnoth-help/ko.po index 974e80c91a0..60bde052b43 100644 --- a/po/wesnoth-help/ko.po +++ b/po/wesnoth-help/ko.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-02-28 17:17+0900\n" diff --git a/po/wesnoth-help/lv.po b/po/wesnoth-help/lv.po index c0982df0e9a..e816e11ead1 100644 --- a/po/wesnoth-help/lv.po +++ b/po/wesnoth-help/lv.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9.10+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.9.10+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-23 16:51+0300\n" diff --git a/po/wesnoth-help/pt.po b/po/wesnoth-help/pt.po index 9db9d2567ca..d5b76d12bda 100644 --- a/po/wesnoth-help/pt.po +++ b/po/wesnoth-help/pt.po @@ -1,7 +1,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-02 22:44+0100\n" diff --git a/po/wesnoth-help/racv.po b/po/wesnoth-help/racv.po index 4369753db80..d3a65561c53 100644 --- a/po/wesnoth-help/racv.po +++ b/po/wesnoth-help/racv.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-09-24 02:09+0100\n" diff --git a/po/wesnoth-httt/ar.po b/po/wesnoth-httt/ar.po index be9645bec10..bebef125320 100644 --- a/po/wesnoth-httt/ar.po +++ b/po/wesnoth-httt/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-05-26 18:39+0200\n" diff --git a/po/wesnoth-httt/fur_IT.po b/po/wesnoth-httt/fur_IT.po index e9a27a57fbb..515be122965 100644 --- a/po/wesnoth-httt/fur_IT.po +++ b/po/wesnoth-httt/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-httt/hr.po b/po/wesnoth-httt/hr.po index 864ba42e803..b65a588d1f7 100644 --- a/po/wesnoth-httt/hr.po +++ b/po/wesnoth-httt/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-09-03 17:38+0100\n" diff --git a/po/wesnoth-httt/id.po b/po/wesnoth-httt/id.po index 47296aa1d6b..a258c0161cb 100644 --- a/po/wesnoth-httt/id.po +++ b/po/wesnoth-httt/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-11-16 16:57+0700\n" diff --git a/po/wesnoth-httt/is.po b/po/wesnoth-httt/is.po index 020f73d0123..647cc0d2ca0 100644 --- a/po/wesnoth-httt/is.po +++ b/po/wesnoth-httt/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-04-26 12:47-0000\n" diff --git a/po/wesnoth-httt/ja.po b/po/wesnoth-httt/ja.po index 0137f008a4e..4a7a740c98e 100644 --- a/po/wesnoth-httt/ja.po +++ b/po/wesnoth-httt/ja.po @@ -11,7 +11,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.9+svn\n" +"Project-Id-Version: 1.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-11-05 08:03+0900\n" diff --git a/po/wesnoth-httt/ko.po b/po/wesnoth-httt/ko.po index 63da26f0b39..8c6971cc0e5 100644 --- a/po/wesnoth-httt/ko.po +++ b/po/wesnoth-httt/ko.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-04-29 20:30+0900\n" diff --git a/po/wesnoth-httt/lv.po b/po/wesnoth-httt/lv.po index d5e570ae250..8a65f224b64 100644 --- a/po/wesnoth-httt/lv.po +++ b/po/wesnoth-httt/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-06-18 20:03+0200\n" diff --git a/po/wesnoth-httt/mr.po b/po/wesnoth-httt/mr.po index cb0d7af80a8..8b1b96dad94 100644 --- a/po/wesnoth-httt/mr.po +++ b/po/wesnoth-httt/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-02-01 18:02+0100\n" diff --git a/po/wesnoth-httt/nb_NO.po b/po/wesnoth-httt/nb_NO.po index 1573eb7607b..5dfd5ac7812 100644 --- a/po/wesnoth-httt/nb_NO.po +++ b/po/wesnoth-httt/nb_NO.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2-SVN\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-01-31 22:36+0100\n" diff --git a/po/wesnoth-httt/nl.po b/po/wesnoth-httt/nl.po index ea5f588452b..7267f7a59dd 100644 --- a/po/wesnoth-httt/nl.po +++ b/po/wesnoth-httt/nl.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6.4+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6.4+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-02-16 13:31+0100\n" diff --git a/po/wesnoth-httt/pt.po b/po/wesnoth-httt/pt.po index 703a4115d95..1483f151967 100644 --- a/po/wesnoth-httt/pt.po +++ b/po/wesnoth-httt/pt.po @@ -1,7 +1,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2013-03-02 21:59+0100\n" diff --git a/po/wesnoth-httt/racv.po b/po/wesnoth-httt/racv.po index 424ab93b475..98203c000aa 100644 --- a/po/wesnoth-httt/racv.po +++ b/po/wesnoth-httt/racv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-21 11:00+0100\n" diff --git a/po/wesnoth-httt/ro.po b/po/wesnoth-httt/ro.po index cf11480c547..eea1f4783a0 100644 --- a/po/wesnoth-httt/ro.po +++ b/po/wesnoth-httt/ro.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2005-11-12 21:22+0100\n" diff --git a/po/wesnoth-httt/tl.po b/po/wesnoth-httt/tl.po index 4135d7ba89d..45ea00bc93f 100644 --- a/po/wesnoth-httt/tl.po +++ b/po/wesnoth-httt/tl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2006-04-23 23:01+0200\n" diff --git a/po/wesnoth-l/ar.po b/po/wesnoth-l/ar.po index a16ad3e4391..1864f2660cf 100644 --- a/po/wesnoth-l/ar.po +++ b/po/wesnoth-l/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-l/fur_IT.po b/po/wesnoth-l/fur_IT.po index b573ca6040c..f3cb743418e 100644 --- a/po/wesnoth-l/fur_IT.po +++ b/po/wesnoth-l/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-l/hr.po b/po/wesnoth-l/hr.po index b62fa5a5ff4..cb6b66fc9a4 100644 --- a/po/wesnoth-l/hr.po +++ b/po/wesnoth-l/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-09-01 18:47+0200\n" "PO-Revision-Date: 2012-08-27 10:36+0100\n" diff --git a/po/wesnoth-l/is.po b/po/wesnoth-l/is.po index b380bd4b7db..0c925bc7853 100644 --- a/po/wesnoth-l/is.po +++ b/po/wesnoth-l/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-04-26 12:51-0000\n" diff --git a/po/wesnoth-l/ja.po b/po/wesnoth-l/ja.po index a2c053e802d..4f1b304ef10 100644 --- a/po/wesnoth-l/ja.po +++ b/po/wesnoth-l/ja.po @@ -7,7 +7,7 @@ # msgid "" msgstr "" -"Project-Id-Version: wesnoth svn trunk\n" +"Project-Id-Version: wesnoth dev trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2011-11-05 08:14+0900\n" diff --git a/po/wesnoth-l/lv.po b/po/wesnoth-l/lv.po index ab3c89541bf..b47ed83e8a5 100644 --- a/po/wesnoth-l/lv.po +++ b/po/wesnoth-l/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-l/mr.po b/po/wesnoth-l/mr.po index 6a1fd7a86d1..2fce2b5fb91 100644 --- a/po/wesnoth-l/mr.po +++ b/po/wesnoth-l/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-02-01 18:02+0100\n" diff --git a/po/wesnoth-l/vi.po b/po/wesnoth-l/vi.po index 988c0fd9269..65e1433f4c5 100644 --- a/po/wesnoth-l/vi.po +++ b/po/wesnoth-l/vi.po @@ -8,7 +8,7 @@ # Phạm Thành Nam , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2013-03-22 21:45+0800\n" diff --git a/po/wesnoth-l/zh_TW.po b/po/wesnoth-l/zh_TW.po index 6e90fdc9f54..08df2a2ef0f 100644 --- a/po/wesnoth-l/zh_TW.po +++ b/po/wesnoth-l/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:41+0200\n" "PO-Revision-Date: 2009-05-24 18:51+0800\n" diff --git a/po/wesnoth-lib/ar.po b/po/wesnoth-lib/ar.po index f9bc11920fd..9faa0f2c7a2 100644 --- a/po/wesnoth-lib/ar.po +++ b/po/wesnoth-lib/ar.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.4.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.4.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-07-01 17:35-0000\n" diff --git a/po/wesnoth-lib/ca.po b/po/wesnoth-lib/ca.po index 00176e7fb08..fbd3364109f 100644 --- a/po/wesnoth-lib/ca.po +++ b/po/wesnoth-lib/ca.po @@ -8,7 +8,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.6.0+svn\n" +"Project-Id-Version: 1.6.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-03-22 09:40+0100\n" diff --git a/po/wesnoth-lib/ca_ES@valencia.po b/po/wesnoth-lib/ca_ES@valencia.po index c3273604735..6406bbab078 100644 --- a/po/wesnoth-lib/ca_ES@valencia.po +++ b/po/wesnoth-lib/ca_ES@valencia.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.5.5+svn\n" +"Project-Id-Version: 1.5.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-10-25 11:30+0200\n" diff --git a/po/wesnoth-lib/fur_IT.po b/po/wesnoth-lib/fur_IT.po index e779a897224..032864b8d2f 100644 --- a/po/wesnoth-lib/fur_IT.po +++ b/po/wesnoth-lib/fur_IT.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-lib/hr.po b/po/wesnoth-lib/hr.po index 77a59e31bd9..a937fa2b02a 100644 --- a/po/wesnoth-lib/hr.po +++ b/po/wesnoth-lib/hr.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-03-06 10:56+0100\n" diff --git a/po/wesnoth-lib/id.po b/po/wesnoth-lib/id.po index 8f4b58360fe..a7e8fce1f7e 100644 --- a/po/wesnoth-lib/id.po +++ b/po/wesnoth-lib/id.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-01-27 22:37+0700\n" diff --git a/po/wesnoth-lib/is.po b/po/wesnoth-lib/is.po index 2944f9ea458..f6ede7ec048 100644 --- a/po/wesnoth-lib/is.po +++ b/po/wesnoth-lib/is.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-06-15 15:03-0000\n" diff --git a/po/wesnoth-lib/ja.po b/po/wesnoth-lib/ja.po index 633c5317420..71d1281d38b 100644 --- a/po/wesnoth-lib/ja.po +++ b/po/wesnoth-lib/ja.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9.x-SVN\n" +"Project-Id-Version: Battle for Wesnoth 1.9.x-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2010-12-11 23:31+0900\n" diff --git a/po/wesnoth-lib/ko.po b/po/wesnoth-lib/ko.po index 9143a548c98..3d706186a05 100644 --- a/po/wesnoth-lib/ko.po +++ b/po/wesnoth-lib/ko.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-22 18:38+0900\n" diff --git a/po/wesnoth-lib/lv.po b/po/wesnoth-lib/lv.po index ad9276eb143..24aa5d12ca2 100644 --- a/po/wesnoth-lib/lv.po +++ b/po/wesnoth-lib/lv.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9.10+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.9.10+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-14 17:54+0300\n" diff --git a/po/wesnoth-lib/mr.po b/po/wesnoth-lib/mr.po index ed73917da07..b33d35682de 100644 --- a/po/wesnoth-lib/mr.po +++ b/po/wesnoth-lib/mr.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-02-02 07:58+0100\n" diff --git a/po/wesnoth-lib/pt.po b/po/wesnoth-lib/pt.po index ce4e5769bcb..79d44027de2 100644 --- a/po/wesnoth-lib/pt.po +++ b/po/wesnoth-lib/pt.po @@ -5,7 +5,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-02 22:01+0100\n" diff --git a/po/wesnoth-lib/racv.po b/po/wesnoth-lib/racv.po index 03542aa7266..e16b216747b 100644 --- a/po/wesnoth-lib/racv.po +++ b/po/wesnoth-lib/racv.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-09-21 19:29+0100\n" diff --git a/po/wesnoth-lib/ro.po b/po/wesnoth-lib/ro.po index 07062ac00dc..95691bb0f83 100644 --- a/po/wesnoth-lib/ro.po +++ b/po/wesnoth-lib/ro.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-11-12 21:22+0100\n" diff --git a/po/wesnoth-lib/tl.po b/po/wesnoth-lib/tl.po index 6b059a21b8c..1bd610134d9 100644 --- a/po/wesnoth-lib/tl.po +++ b/po/wesnoth-lib/tl.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-05-13 05:43-0000\n" diff --git a/po/wesnoth-low/fr.po b/po/wesnoth-low/fr.po index 53ed41cc544..43b5c425387 100644 --- a/po/wesnoth-low/fr.po +++ b/po/wesnoth-low/fr.po @@ -6118,7 +6118,7 @@ msgstr "Oh non ! Nous arrivons trop tard..." #~ "l'époque de Konrad et de Delfador." #, fuzzy -#~ msgid "(for Battle for Wesnoth 1.5.5 or greater (or svn HEAD))" +#~ msgid "(for Battle for Wesnoth 1.5.5 or greater (or dev HEAD))" #~ msgstr "(Pour Bataille pour Wesnoth 1.4.x)" #~ msgid "" diff --git a/po/wesnoth-low/is.po b/po/wesnoth-low/is.po index f30095dc4da..986fef430ea 100644 --- a/po/wesnoth-low/is.po +++ b/po/wesnoth-low/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-04-26 12:59-0000\n" diff --git a/po/wesnoth-low/ja.po b/po/wesnoth-low/ja.po index 501ef10c9f9..f7c812ef8b3 100644 --- a/po/wesnoth-low/ja.po +++ b/po/wesnoth-low/ja.po @@ -7,7 +7,7 @@ # msgid "" msgstr "" -"Project-Id-Version: The Battle for Wesnoth svn-trunk\n" +"Project-Id-Version: The Battle for Wesnoth dev-trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-07-09 07:05+0900\n" diff --git a/po/wesnoth-low/mr.po b/po/wesnoth-low/mr.po index b46ad50dbb0..3495cf00e48 100644 --- a/po/wesnoth-low/mr.po +++ b/po/wesnoth-low/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-01-30 20:59+0100\n" diff --git a/po/wesnoth-low/vi.po b/po/wesnoth-low/vi.po index 3d72392b138..4b71917c036 100644 --- a/po/wesnoth-low/vi.po +++ b/po/wesnoth-low/vi.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-09-06 15:04+0200\n" diff --git a/po/wesnoth-manpages/af.po b/po/wesnoth-manpages/af.po index 4e3792e7247..c2c218708f9 100644 --- a/po/wesnoth-manpages/af.po +++ b/po/wesnoth-manpages/af.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:20+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/ar.po b/po/wesnoth-manpages/ar.po index 4dfab69dcb9..8ad51dc8bf7 100644 --- a/po/wesnoth-manpages/ar.po +++ b/po/wesnoth-manpages/ar.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2008-05-26 18:41+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/ca.po b/po/wesnoth-manpages/ca.po index 8a865ef328f..12e9737c0de 100644 --- a/po/wesnoth-manpages/ca.po +++ b/po/wesnoth-manpages/ca.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:23+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/da.po b/po/wesnoth-manpages/da.po index 133dec99c28..44242d09979 100644 --- a/po/wesnoth-manpages/da.po +++ b/po/wesnoth-manpages/da.po @@ -9,7 +9,7 @@ # (f.eks. tysk og tjekkisk) msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2008-10-07 17:58+0200\n" "Last-Translator: Joe Hansen \n" diff --git a/po/wesnoth-manpages/el.po b/po/wesnoth-manpages/el.po index 49283beddfa..1cef9ada191 100644 --- a/po/wesnoth-manpages/el.po +++ b/po/wesnoth-manpages/el.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:18+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/eo.po b/po/wesnoth-manpages/eo.po index a75c3a4d78f..3936a6a15b9 100644 --- a/po/wesnoth-manpages/eo.po +++ b/po/wesnoth-manpages/eo.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:18+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/et.po b/po/wesnoth-manpages/et.po index f036e204e07..74557d7c61e 100644 --- a/po/wesnoth-manpages/et.po +++ b/po/wesnoth-manpages/et.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2013-03-09 13:27+0300\n" "Last-Translator: Kaido Kikkas \n" diff --git a/po/wesnoth-manpages/eu.po b/po/wesnoth-manpages/eu.po index b17241ca022..ec2b32173e5 100644 --- a/po/wesnoth-manpages/eu.po +++ b/po/wesnoth-manpages/eu.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:18+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/fur_IT.po b/po/wesnoth-manpages/fur_IT.po index ca0e19799db..c9ad4cecc28 100644 --- a/po/wesnoth-manpages/fur_IT.po +++ b/po/wesnoth-manpages/fur_IT.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2008-04-13 16:21+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/he.po b/po/wesnoth-manpages/he.po index eefc512ddfb..9204a410176 100644 --- a/po/wesnoth-manpages/he.po +++ b/po/wesnoth-manpages/he.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:19+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/hr.po b/po/wesnoth-manpages/hr.po index 2ff3ed01c9d..4150c48eb1b 100644 --- a/po/wesnoth-manpages/hr.po +++ b/po/wesnoth-manpages/hr.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2012-08-27 10:22+0100\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/id.po b/po/wesnoth-manpages/id.po index 2407d761953..47978a7d73f 100644 --- a/po/wesnoth-manpages/id.po +++ b/po/wesnoth-manpages/id.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2012-01-27 22:40+0700\n" "Last-Translator: Yuris \n" diff --git a/po/wesnoth-manpages/is.po b/po/wesnoth-manpages/is.po index 940804f119e..b78d1ee9c60 100644 --- a/po/wesnoth-manpages/is.po +++ b/po/wesnoth-manpages/is.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "POT-Creation-Date: 2012-08-18 09:40+0300\n" "PO-Revision-Date: 2009-05-17 11:48-0000\n" "Last-Translator: Gabríel A. Pétursson \n" diff --git a/po/wesnoth-manpages/ja.po b/po/wesnoth-manpages/ja.po index 774cc7919fc..0eace993ca8 100644 --- a/po/wesnoth-manpages/ja.po +++ b/po/wesnoth-manpages/ja.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2010-01-31 12:01+0900\n" "Last-Translator: \n" diff --git a/po/wesnoth-manpages/ko.po b/po/wesnoth-manpages/ko.po index c7860446aa0..6d0839be84d 100644 --- a/po/wesnoth-manpages/ko.po +++ b/po/wesnoth-manpages/ko.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2010-11-17 22:43+0900\n" "Last-Translator: mistzone \n" diff --git a/po/wesnoth-manpages/la.po b/po/wesnoth-manpages/la.po index 8b7ba183516..c052fedbb93 100644 --- a/po/wesnoth-manpages/la.po +++ b/po/wesnoth-manpages/la.po @@ -10,7 +10,7 @@ # Mark Polo (mpolo) msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2012-12-16 20:36-0000\n" "Last-Translator: Thomas Hockings \n" diff --git a/po/wesnoth-manpages/lv.po b/po/wesnoth-manpages/lv.po index 46f693a1a84..953c7c6590f 100644 --- a/po/wesnoth-manpages/lv.po +++ b/po/wesnoth-manpages/lv.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2008-05-26 18:41+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/mr.po b/po/wesnoth-manpages/mr.po index f49201f6821..5a6ce4d2992 100644 --- a/po/wesnoth-manpages/mr.po +++ b/po/wesnoth-manpages/mr.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2009-01-06 22:08+0100\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/nb_NO.po b/po/wesnoth-manpages/nb_NO.po index 7d75f63955c..84b1a6d3627 100644 --- a/po/wesnoth-manpages/nb_NO.po +++ b/po/wesnoth-manpages/nb_NO.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:19+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/nl.po b/po/wesnoth-manpages/nl.po index 6caeb6903cd..10ec48f8608 100644 --- a/po/wesnoth-manpages/nl.po +++ b/po/wesnoth-manpages/nl.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2008-02-27 18:07+0100\n" "Last-Translator: Joeri Melis \n" diff --git a/po/wesnoth-manpages/pt.po b/po/wesnoth-manpages/pt.po index 2609c75519e..46290de7f9d 100644 --- a/po/wesnoth-manpages/pt.po +++ b/po/wesnoth-manpages/pt.po @@ -4,7 +4,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2013-03-02 22:07+0100\n" "Last-Translator: trewe \n" diff --git a/po/wesnoth-manpages/pt_BR.po b/po/wesnoth-manpages/pt_BR.po index 1f6d5cc8a97..f7d8fe8ce71 100644 --- a/po/wesnoth-manpages/pt_BR.po +++ b/po/wesnoth-manpages/pt_BR.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2009-11-24 22:50-0300\n" diff --git a/po/wesnoth-manpages/racv.po b/po/wesnoth-manpages/racv.po index b1d9915d158..da889108cf2 100644 --- a/po/wesnoth-manpages/racv.po +++ b/po/wesnoth-manpages/racv.po @@ -7,7 +7,7 @@ # Sergi March , 2008. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2008-03-23 22:08+0100\n" "Last-Translator: Mavorte \n" diff --git a/po/wesnoth-manpages/ro.po b/po/wesnoth-manpages/ro.po index fab549ef126..f721a7cc333 100644 --- a/po/wesnoth-manpages/ro.po +++ b/po/wesnoth-manpages/ro.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:19+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/sk.po b/po/wesnoth-manpages/sk.po index 4706143f302..9708ef73fda 100644 --- a/po/wesnoth-manpages/sk.po +++ b/po/wesnoth-manpages/sk.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2013-03-09 21:09+0100\n" "Last-Translator: aceman \n" diff --git a/po/wesnoth-manpages/sl.po b/po/wesnoth-manpages/sl.po index cc5bdd5377d..c69ba15ee64 100644 --- a/po/wesnoth-manpages/sl.po +++ b/po/wesnoth-manpages/sl.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2010-09-25 19:57+0100\n" "Last-Translator: Klemen Košir \n" diff --git a/po/wesnoth-manpages/tl.po b/po/wesnoth-manpages/tl.po index 7834e149f17..03e81b7476c 100644 --- a/po/wesnoth-manpages/tl.po +++ b/po/wesnoth-manpages/tl.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2006-08-22 00:20+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manpages/vi.po b/po/wesnoth-manpages/vi.po index 1cd84d92cdf..707d1ab4aa4 100644 --- a/po/wesnoth-manpages/vi.po +++ b/po/wesnoth-manpages/vi.po @@ -6,7 +6,7 @@ # Phạm Thành Nam , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2013-03-23 13:10+0800\n" "Last-Translator: Phạm Thành Nam \n" diff --git a/po/wesnoth-manpages/wesnoth-manpages.cfg b/po/wesnoth-manpages/wesnoth-manpages.cfg index 5845ce9884c..4636b6aea4d 100644 --- a/po/wesnoth-manpages/wesnoth-manpages.cfg +++ b/po/wesnoth-manpages/wesnoth-manpages.cfg @@ -2,7 +2,7 @@ # How to update manpages? # # 1) Run `make update-po4a' from the top directory. -# 2) Check which files have been changed, `svn st'. +# 2) Check which files have been changed, `dev st'. # If the original manpages haven't been modified, there should only # be changes in translated manpages (doc/man/ll/*). # 3) Commit! diff --git a/po/wesnoth-manpages/zh_TW.po b/po/wesnoth-manpages/zh_TW.po index 9b838f595dd..ae27e10185f 100644 --- a/po/wesnoth-manpages/zh_TW.po +++ b/po/wesnoth-manpages/zh_TW.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2010-06-25 15:02+0800\n" "Last-Translator: YP_Lin \n" diff --git a/po/wesnoth-manual/af.po b/po/wesnoth-manual/af.po index d8ab43ef217..2093573b148 100644 --- a/po/wesnoth-manual/af.po +++ b/po/wesnoth-manual/af.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/ar.po b/po/wesnoth-manual/ar.po index b8796a84fd1..5872520bdfe 100644 --- a/po/wesnoth-manual/ar.po +++ b/po/wesnoth-manual/ar.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2008-05-11 16:22+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/bg.po b/po/wesnoth-manual/bg.po index fed777392ff..67390973f48 100644 --- a/po/wesnoth-manual/bg.po +++ b/po/wesnoth-manual/bg.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/ca.po b/po/wesnoth-manual/ca.po index eaeb0906b04..6046fcd4330 100644 --- a/po/wesnoth-manual/ca.po +++ b/po/wesnoth-manual/ca.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/ca_ES@valencia.po b/po/wesnoth-manual/ca_ES@valencia.po index 53765b2b1cd..6bbb3212d23 100644 --- a/po/wesnoth-manual/ca_ES@valencia.po +++ b/po/wesnoth-manual/ca_ES@valencia.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.5+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2009-04-17 12:52+0300\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/el.po b/po/wesnoth-manual/el.po index 12b0f93bbfa..be0f1b56658 100644 --- a/po/wesnoth-manual/el.po +++ b/po/wesnoth-manual/el.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2008-06-16 18:39+0200\n" "Last-Translator: Παναγιώτης Φαμέλης \n" diff --git a/po/wesnoth-manual/en_GB.po b/po/wesnoth-manual/en_GB.po index 4752ca72ecd..a2ef1fdda22 100644 --- a/po/wesnoth-manual/en_GB.po +++ b/po/wesnoth-manual/en_GB.po @@ -5,7 +5,7 @@ # Steven Panek , 2011. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2012-08-15 07:25-0500\n" "Last-Translator: Steven Panek (Espreon) \n" diff --git a/po/wesnoth-manual/eo.po b/po/wesnoth-manual/eo.po index 4707a019e0e..880dad47705 100644 --- a/po/wesnoth-manual/eo.po +++ b/po/wesnoth-manual/eo.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/et.po b/po/wesnoth-manual/et.po index 5f98e8bade1..07ca890ac84 100644 --- a/po/wesnoth-manual/et.po +++ b/po/wesnoth-manual/et.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2012-04-02 21:57+0300\n" "Last-Translator: Kaido Kikkas \n" diff --git a/po/wesnoth-manual/eu.po b/po/wesnoth-manual/eu.po index 555024551ce..fc867c0820d 100644 --- a/po/wesnoth-manual/eu.po +++ b/po/wesnoth-manual/eu.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/fi.po b/po/wesnoth-manual/fi.po index c5a13e8fbb5..88a66aff3e3 100644 --- a/po/wesnoth-manual/fi.po +++ b/po/wesnoth-manual/fi.po @@ -7,7 +7,7 @@ # Jarkko Patteri , 2012. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2012-02-21 04:54+0200\n" "Last-Translator: Jarkko Patteri \n" diff --git a/po/wesnoth-manual/fur_IT.po b/po/wesnoth-manual/fur_IT.po index a5bd64beab4..8ef2bc270e8 100644 --- a/po/wesnoth-manual/fur_IT.po +++ b/po/wesnoth-manual/fur_IT.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2008-05-11 16:22+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/he.po b/po/wesnoth-manual/he.po index 209094cdf01..c8267b30c57 100644 --- a/po/wesnoth-manual/he.po +++ b/po/wesnoth-manual/he.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/hr.po b/po/wesnoth-manual/hr.po index 496d78cdcf5..a9c2546a8ce 100644 --- a/po/wesnoth-manual/hr.po +++ b/po/wesnoth-manual/hr.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2008-03-06 10:59+0100\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/id.po b/po/wesnoth-manual/id.po index a2be70e4724..96f45fe35cc 100644 --- a/po/wesnoth-manual/id.po +++ b/po/wesnoth-manual/id.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2011-11-24 17:34+0700\n" "Last-Translator: Yuris \n" diff --git a/po/wesnoth-manual/is.po b/po/wesnoth-manual/is.po index b2686e6fc76..ce12fb13006 100644 --- a/po/wesnoth-manual/is.po +++ b/po/wesnoth-manual/is.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2009-04-18 19:45-0000\n" "Last-Translator: Gabríel A. Pétursson \n" diff --git a/po/wesnoth-manual/ja.po b/po/wesnoth-manual/ja.po index 165da2f5a38..283a4463d28 100644 --- a/po/wesnoth-manual/ja.po +++ b/po/wesnoth-manual/ja.po @@ -10,7 +10,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth svn-trunk\n" +"Project-Id-Version: Battle for Wesnoth dev-trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2011-11-11 03:32+0900\n" diff --git a/po/wesnoth-manual/ko.po b/po/wesnoth-manual/ko.po index 680e90ac01d..3d908452396 100644 --- a/po/wesnoth-manual/ko.po +++ b/po/wesnoth-manual/ko.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2010-12-01 22:40+0900\n" "Last-Translator: mistzone \n" diff --git a/po/wesnoth-manual/la.po b/po/wesnoth-manual/la.po index 2b19117a0ea..8749e001fa7 100644 --- a/po/wesnoth-manual/la.po +++ b/po/wesnoth-manual/la.po @@ -10,7 +10,7 @@ # Mark Polo (mpolo) msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2012-12-16 20:35-0000\n" "Last-Translator: Thomas Hockings \n" diff --git a/po/wesnoth-manual/lv.po b/po/wesnoth-manual/lv.po index f0f0ad0c203..e03fa9ff3bb 100644 --- a/po/wesnoth-manual/lv.po +++ b/po/wesnoth-manual/lv.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2008-06-13 13:31+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/mr.po b/po/wesnoth-manual/mr.po index 208683c38e3..6d0e2e1bfea 100644 --- a/po/wesnoth-manual/mr.po +++ b/po/wesnoth-manual/mr.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2009-01-30 22:44+0100\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/nb_NO.po b/po/wesnoth-manual/nb_NO.po index 5eb89cb1e39..08fedadf163 100644 --- a/po/wesnoth-manual/nb_NO.po +++ b/po/wesnoth-manual/nb_NO.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/nl.po b/po/wesnoth-manual/nl.po index a44371c84aa..fa02604ac85 100644 --- a/po/wesnoth-manual/nl.po +++ b/po/wesnoth-manual/nl.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2008-04-13 00:09+0100\n" "Last-Translator: Foppe Benedictus \n" diff --git a/po/wesnoth-manual/pl.po b/po/wesnoth-manual/pl.po index 63ce841b239..5bb2f3d521e 100644 --- a/po/wesnoth-manual/pl.po +++ b/po/wesnoth-manual/pl.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2012-02-24 19:47+0100\n" "Last-Translator: Zbigniew Banach \n" diff --git a/po/wesnoth-manual/pt.po b/po/wesnoth-manual/pt.po index c69cbf919e1..f89b52fcf1f 100644 --- a/po/wesnoth-manual/pt.po +++ b/po/wesnoth-manual/pt.po @@ -5,7 +5,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-10-27 15:56+0300\n" "PO-Revision-Date: 2013-03-02 22:09+0100\n" "Last-Translator: trewe \n" diff --git a/po/wesnoth-manual/pt_BR.po b/po/wesnoth-manual/pt_BR.po index 4053ae9c2c7..1a5d542a3ff 100644 --- a/po/wesnoth-manual/pt_BR.po +++ b/po/wesnoth-manual/pt_BR.po @@ -2,12 +2,12 @@ # Copyright (C) 2007 Wesnoth Development Team # This file is distributed under the same license as the Battle for Wesnoth package. # Automatically generated, 2007. -# http://svn.gna.org/viewcvs/*checkout*/wesnoth/branches/1.8/po/wesnoth-manual/pt_BR.po +# http://dev.gna.org/viewcvs/*checkout*/wesnoth/branches/1.8/po/wesnoth-manual/pt_BR.po # revised by gilberto dos santos alves gsavix@gmail.com 2013.03.10 05:13-0300 # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-03-09 08:50+0100\n" "PO-Revision-Date: 2013-03-10 05:20-0300\n" diff --git a/po/wesnoth-manual/racv.po b/po/wesnoth-manual/racv.po index a2df2f1dc1e..4bbc33cec92 100644 --- a/po/wesnoth-manual/racv.po +++ b/po/wesnoth-manual/racv.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/ro.po b/po/wesnoth-manual/ro.po index bdb5c2c3c89..f6f637eaa0a 100644 --- a/po/wesnoth-manual/ro.po +++ b/po/wesnoth-manual/ro.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/sk.po b/po/wesnoth-manual/sk.po index cc198d4bc7a..059867e2796 100644 --- a/po/wesnoth-manual/sk.po +++ b/po/wesnoth-manual/sk.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-09-01 18:47+0300\n" "PO-Revision-Date: 2012-09-17 20:06+0100\n" "Last-Translator: Vlado Zelik \n" diff --git a/po/wesnoth-manual/sl.po b/po/wesnoth-manual/sl.po index e062059e7f8..533fa7d00dd 100644 --- a/po/wesnoth-manual/sl.po +++ b/po/wesnoth-manual/sl.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2010-09-25 15:07+0100\n" "Last-Translator: Klemen Košir \n" diff --git a/po/wesnoth-manual/tl.po b/po/wesnoth-manual/tl.po index c7fae165b46..d1a6ab27d78 100644 --- a/po/wesnoth-manual/tl.po +++ b/po/wesnoth-manual/tl.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2007-09-16 09:57+0200\n" "Last-Translator: Automatically generated\n" diff --git a/po/wesnoth-manual/vi.po b/po/wesnoth-manual/vi.po index 96ab783402a..f7928547028 100644 --- a/po/wesnoth-manual/vi.po +++ b/po/wesnoth-manual/vi.po @@ -5,7 +5,7 @@ # Automatically generated, 2009, 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "POT-Creation-Date: 2012-08-18 09:39+0300\n" "PO-Revision-Date: 2013-03-07 21:33+0800\n" "Last-Translator: Phạm Thành Nam\n" diff --git a/po/wesnoth-multiplayer/ar.po b/po/wesnoth-multiplayer/ar.po index b5b615c8aff..70936970806 100644 --- a/po/wesnoth-multiplayer/ar.po +++ b/po/wesnoth-multiplayer/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-04-24 21:05+0200\n" diff --git a/po/wesnoth-multiplayer/ca.po b/po/wesnoth-multiplayer/ca.po index 8513880762b..f2ac0d5cd3e 100644 --- a/po/wesnoth-multiplayer/ca.po +++ b/po/wesnoth-multiplayer/ca.po @@ -12,7 +12,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.5.5+svn\n" +"Project-Id-Version: 1.5.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-03-22 09:05+0100\n" diff --git a/po/wesnoth-multiplayer/fur_IT.po b/po/wesnoth-multiplayer/fur_IT.po index 3284e5031c5..62e310433f9 100644 --- a/po/wesnoth-multiplayer/fur_IT.po +++ b/po/wesnoth-multiplayer/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-04-24 21:05+0200\n" diff --git a/po/wesnoth-multiplayer/hr.po b/po/wesnoth-multiplayer/hr.po index 91daaed6b69..dd338fd6a2a 100644 --- a/po/wesnoth-multiplayer/hr.po +++ b/po/wesnoth-multiplayer/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-03-06 10:56+0100\n" diff --git a/po/wesnoth-multiplayer/id.po b/po/wesnoth-multiplayer/id.po index e5893878fdf..15f4c60a456 100644 --- a/po/wesnoth-multiplayer/id.po +++ b/po/wesnoth-multiplayer/id.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-01-27 22:42+0700\n" diff --git a/po/wesnoth-multiplayer/is.po b/po/wesnoth-multiplayer/is.po index 0d520e18392..6b6bdfde439 100644 --- a/po/wesnoth-multiplayer/is.po +++ b/po/wesnoth-multiplayer/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-04-12 11:24-0000\n" diff --git a/po/wesnoth-multiplayer/ja.po b/po/wesnoth-multiplayer/ja.po index b01f673740f..9affcdafc9a 100644 --- a/po/wesnoth-multiplayer/ja.po +++ b/po/wesnoth-multiplayer/ja.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.10-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.10-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-06-04 02:55+0900\n" diff --git a/po/wesnoth-multiplayer/ko.po b/po/wesnoth-multiplayer/ko.po index dace6459926..619c941dd15 100644 --- a/po/wesnoth-multiplayer/ko.po +++ b/po/wesnoth-multiplayer/ko.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-04-25 19:11+0900\n" diff --git a/po/wesnoth-multiplayer/mr.po b/po/wesnoth-multiplayer/mr.po index 28f1eeed4d7..12cbebce775 100644 --- a/po/wesnoth-multiplayer/mr.po +++ b/po/wesnoth-multiplayer/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-02-02 07:59+0100\n" diff --git a/po/wesnoth-multiplayer/pt.po b/po/wesnoth-multiplayer/pt.po index a05423830b8..43d5fd44847 100644 --- a/po/wesnoth-multiplayer/pt.po +++ b/po/wesnoth-multiplayer/pt.po @@ -6,7 +6,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2013-03-02 22:11+0100\n" diff --git a/po/wesnoth-multiplayer/tl.po b/po/wesnoth-multiplayer/tl.po index cb173913e6e..d5566f48d1e 100644 --- a/po/wesnoth-multiplayer/tl.po +++ b/po/wesnoth-multiplayer/tl.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2006-05-05 16:30+0200\n" diff --git a/po/wesnoth-nr/ar.po b/po/wesnoth-nr/ar.po index 2075a0e59cc..7d2d3f2fbe3 100644 --- a/po/wesnoth-nr/ar.po +++ b/po/wesnoth-nr/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-nr/en@shaw.po b/po/wesnoth-nr/en@shaw.po index 0ccd173b852..0eb9bb4def3 100644 --- a/po/wesnoth-nr/en@shaw.po +++ b/po/wesnoth-nr/en@shaw.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-10-07 15:42+0200\n" diff --git a/po/wesnoth-nr/fur_IT.po b/po/wesnoth-nr/fur_IT.po index 6e2b057d5e0..0686cb6275c 100644 --- a/po/wesnoth-nr/fur_IT.po +++ b/po/wesnoth-nr/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-nr/hr.po b/po/wesnoth-nr/hr.po index 16babc6c00a..a0b7d98199e 100644 --- a/po/wesnoth-nr/hr.po +++ b/po/wesnoth-nr/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-03-06 10:56+0100\n" diff --git a/po/wesnoth-nr/is.po b/po/wesnoth-nr/is.po index 4b249f5234a..ace6505f830 100644 --- a/po/wesnoth-nr/is.po +++ b/po/wesnoth-nr/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-04-26 13:10-0000\n" diff --git a/po/wesnoth-nr/lv.po b/po/wesnoth-nr/lv.po index 483bd88308a..874763d50b6 100644 --- a/po/wesnoth-nr/lv.po +++ b/po/wesnoth-nr/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-06-29 12:25+0200\n" diff --git a/po/wesnoth-nr/mr.po b/po/wesnoth-nr/mr.po index 4f90cb68420..36a6892c456 100644 --- a/po/wesnoth-nr/mr.po +++ b/po/wesnoth-nr/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-01-30 20:59+0100\n" diff --git a/po/wesnoth-nr/vi.po b/po/wesnoth-nr/vi.po index f58323de37d..31177a3189c 100644 --- a/po/wesnoth-nr/vi.po +++ b/po/wesnoth-nr/vi.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-09-06 15:04+0200\n" diff --git a/po/wesnoth-nr/zh_TW.po b/po/wesnoth-nr/zh_TW.po index 62d10e46c38..76f2ce1a439 100644 --- a/po/wesnoth-nr/zh_TW.po +++ b/po/wesnoth-nr/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-02-26 16:38+0100\n" diff --git a/po/wesnoth-sof/ar.po b/po/wesnoth-sof/ar.po index 318ddd731df..0b746cbdb31 100644 --- a/po/wesnoth-sof/ar.po +++ b/po/wesnoth-sof/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-04-20 12:42+0200\n" diff --git a/po/wesnoth-sof/da.po b/po/wesnoth-sof/da.po index f8e0daab972..6633f2ff79d 100644 --- a/po/wesnoth-sof/da.po +++ b/po/wesnoth-sof/da.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-12-23 20:50+0200\n" diff --git a/po/wesnoth-sof/fur_IT.po b/po/wesnoth-sof/fur_IT.po index 7de8182ea5b..81bf1036b5b 100644 --- a/po/wesnoth-sof/fur_IT.po +++ b/po/wesnoth-sof/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-04-20 12:42+0200\n" diff --git a/po/wesnoth-sof/hr.po b/po/wesnoth-sof/hr.po index cc21110adaf..4c32d20e9a9 100644 --- a/po/wesnoth-sof/hr.po +++ b/po/wesnoth-sof/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-03-02 14:04+0100\n" diff --git a/po/wesnoth-sof/is.po b/po/wesnoth-sof/is.po index 0526b60887a..d7c2c061bc6 100644 --- a/po/wesnoth-sof/is.po +++ b/po/wesnoth-sof/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-04-26 13:14-0000\n" diff --git a/po/wesnoth-sof/ja.po b/po/wesnoth-sof/ja.po index 11859acd460..f982ee1e46b 100644 --- a/po/wesnoth-sof/ja.po +++ b/po/wesnoth-sof/ja.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: wesnoth svn-trunk\n" +"Project-Id-Version: wesnoth dev-trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-04-11 23:20+0900\n" diff --git a/po/wesnoth-sof/lv.po b/po/wesnoth-sof/lv.po index b25efc99b14..0a7597f9f9a 100644 --- a/po/wesnoth-sof/lv.po +++ b/po/wesnoth-sof/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-06-13 13:28+0200\n" diff --git a/po/wesnoth-sof/mr.po b/po/wesnoth-sof/mr.po index e67bcbfd499..9de138d3410 100644 --- a/po/wesnoth-sof/mr.po +++ b/po/wesnoth-sof/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-01-30 20:59+0100\n" diff --git a/po/wesnoth-sof/vi.po b/po/wesnoth-sof/vi.po index 23bcc9a5e1e..d85e7c9c41d 100644 --- a/po/wesnoth-sof/vi.po +++ b/po/wesnoth-sof/vi.po @@ -7,7 +7,7 @@ # Huynh Yen Loc , 2010. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2010-09-04 19:15+0700\n" diff --git a/po/wesnoth-sof/zh_TW.po b/po/wesnoth-sof/zh_TW.po index e2868f8e1e0..b4e476074b1 100644 --- a/po/wesnoth-sof/zh_TW.po +++ b/po/wesnoth-sof/zh_TW.po @@ -1,7 +1,7 @@ # Li , 2010. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2010-09-05 18:00+0800\n" diff --git a/po/wesnoth-sotbe/ar.po b/po/wesnoth-sotbe/ar.po index b1f7c52cced..0c1636fb979 100644 --- a/po/wesnoth-sotbe/ar.po +++ b/po/wesnoth-sotbe/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-26 18:40+0200\n" diff --git a/po/wesnoth-sotbe/eo.po b/po/wesnoth-sotbe/eo.po index f80da97c70b..280e29e24c7 100644 --- a/po/wesnoth-sotbe/eo.po +++ b/po/wesnoth-sotbe/eo.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-12-05 10:47+0100\n" diff --git a/po/wesnoth-sotbe/fur_IT.po b/po/wesnoth-sotbe/fur_IT.po index f6f854a3988..48d6c661d76 100644 --- a/po/wesnoth-sotbe/fur_IT.po +++ b/po/wesnoth-sotbe/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-11 16:13+0200\n" diff --git a/po/wesnoth-sotbe/hr.po b/po/wesnoth-sotbe/hr.po index 4755bf30a3a..ad45a789f75 100644 --- a/po/wesnoth-sotbe/hr.po +++ b/po/wesnoth-sotbe/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-03-06 10:57+0100\n" diff --git a/po/wesnoth-sotbe/is.po b/po/wesnoth-sotbe/is.po index 75f25e27d4d..d1298070870 100644 --- a/po/wesnoth-sotbe/is.po +++ b/po/wesnoth-sotbe/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-04-26 13:20-0000\n" diff --git a/po/wesnoth-sotbe/ja.po b/po/wesnoth-sotbe/ja.po index c8d22a1de7a..1c33fcbd8d7 100644 --- a/po/wesnoth-sotbe/ja.po +++ b/po/wesnoth-sotbe/ja.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.x-SVN\n" +"Project-Id-Version: Battle for Wesnoth 1.7.x-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-01-23 06:37+0900\n" diff --git a/po/wesnoth-sotbe/lv.po b/po/wesnoth-sotbe/lv.po index 0292c283b2b..efc1df36898 100644 --- a/po/wesnoth-sotbe/lv.po +++ b/po/wesnoth-sotbe/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-06-29 13:56+0200\n" diff --git a/po/wesnoth-sotbe/mr.po b/po/wesnoth-sotbe/mr.po index 970a37b9c5b..e641e9c0570 100644 --- a/po/wesnoth-sotbe/mr.po +++ b/po/wesnoth-sotbe/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-01-30 22:44+0100\n" diff --git a/po/wesnoth-sotbe/pt.po b/po/wesnoth-sotbe/pt.po index 26660338a9d..e0c7ecd32bd 100644 --- a/po/wesnoth-sotbe/pt.po +++ b/po/wesnoth-sotbe/pt.po @@ -1,7 +1,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-02 22:16+0100\n" diff --git a/po/wesnoth-sotbe/ro.po b/po/wesnoth-sotbe/ro.po index 45886a82e00..775845709df 100644 --- a/po/wesnoth-sotbe/ro.po +++ b/po/wesnoth-sotbe/ro.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-11-12 21:23+0100\n" diff --git a/po/wesnoth-sotbe/vi.po b/po/wesnoth-sotbe/vi.po index 60d2d22119b..aa2f7f6556d 100644 --- a/po/wesnoth-sotbe/vi.po +++ b/po/wesnoth-sotbe/vi.po @@ -8,7 +8,7 @@ # Huynh Yen Loc , 2010, 2011. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-06-25 08:33+0700\n" diff --git a/po/wesnoth-sotbe/zh_TW.po b/po/wesnoth-sotbe/zh_TW.po index c662d0ee653..db9e80a7819 100644 --- a/po/wesnoth-sotbe/zh_TW.po +++ b/po/wesnoth-sotbe/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-02-26 16:38+0100\n" diff --git a/po/wesnoth-tb/ar.po b/po/wesnoth-tb/ar.po index 9feade8cf53..4d87e779669 100644 --- a/po/wesnoth-tb/ar.po +++ b/po/wesnoth-tb/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2008-04-20 12:42+0200\n" diff --git a/po/wesnoth-tb/fur_IT.po b/po/wesnoth-tb/fur_IT.po index dd44ac6fa18..ad68c2773a1 100644 --- a/po/wesnoth-tb/fur_IT.po +++ b/po/wesnoth-tb/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2008-04-20 12:42+0200\n" diff --git a/po/wesnoth-tb/hr.po b/po/wesnoth-tb/hr.po index f8a4dd2decf..fac27a23066 100644 --- a/po/wesnoth-tb/hr.po +++ b/po/wesnoth-tb/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2008-03-02 14:05+0100\n" diff --git a/po/wesnoth-tb/id.po b/po/wesnoth-tb/id.po index 893c9c2f870..bb4656cb261 100644 --- a/po/wesnoth-tb/id.po +++ b/po/wesnoth-tb/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2011-11-16 14:22+0700\n" diff --git a/po/wesnoth-tb/is.po b/po/wesnoth-tb/is.po index 15725c7d9c5..1bae501f4d0 100644 --- a/po/wesnoth-tb/is.po +++ b/po/wesnoth-tb/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2009-04-26 13:27-0000\n" diff --git a/po/wesnoth-tb/ko.po b/po/wesnoth-tb/ko.po index e4b957e9a83..7b1032d71be 100644 --- a/po/wesnoth-tb/ko.po +++ b/po/wesnoth-tb/ko.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2011-10-01 22:09+0900\n" diff --git a/po/wesnoth-tb/lv.po b/po/wesnoth-tb/lv.po index d31a6e2bfce..b971e3865a7 100644 --- a/po/wesnoth-tb/lv.po +++ b/po/wesnoth-tb/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2008-04-20 12:42+0200\n" diff --git a/po/wesnoth-tb/mr.po b/po/wesnoth-tb/mr.po index 7362932016c..1d68ddced79 100644 --- a/po/wesnoth-tb/mr.po +++ b/po/wesnoth-tb/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2009-01-11 17:07+0100\n" diff --git a/po/wesnoth-tb/tl.po b/po/wesnoth-tb/tl.po index 9bf4cf180a6..79c45be1616 100644 --- a/po/wesnoth-tb/tl.po +++ b/po/wesnoth-tb/tl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2006-04-23 23:02+0200\n" diff --git a/po/wesnoth-tb/vi.po b/po/wesnoth-tb/vi.po index 46fe5d26a27..a8258729de4 100644 --- a/po/wesnoth-tb/vi.po +++ b/po/wesnoth-tb/vi.po @@ -7,7 +7,7 @@ # Huynh Yen Loc , 2010, 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2013-03-16 00:59+0800\n" diff --git a/po/wesnoth-tb/zh_TW.po b/po/wesnoth-tb/zh_TW.po index 0fe358a969f..00c6ff4264f 100644 --- a/po/wesnoth-tb/zh_TW.po +++ b/po/wesnoth-tb/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-12-07 20:59+0100\n" "PO-Revision-Date: 2008-08-13 01:30+0800\n" diff --git a/po/wesnoth-test/af.po b/po/wesnoth-test/af.po index 186179ac8a1..a4013e6190b 100644 --- a/po/wesnoth-test/af.po +++ b/po/wesnoth-test/af.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2011-04-23 21:13-0000\n" diff --git a/po/wesnoth-test/ar.po b/po/wesnoth-test/ar.po index 63cd4ab2c39..2db654649f3 100644 --- a/po/wesnoth-test/ar.po +++ b/po/wesnoth-test/ar.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-07-01 17:35-0000\n" diff --git a/po/wesnoth-test/bg.po b/po/wesnoth-test/bg.po index f6e5302206c..4f111ef7a60 100644 --- a/po/wesnoth-test/bg.po +++ b/po/wesnoth-test/bg.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2007-05-14 22:02+0300\n" diff --git a/po/wesnoth-test/ca.po b/po/wesnoth-test/ca.po index c6a049808d5..07e0581455b 100644 --- a/po/wesnoth-test/ca.po +++ b/po/wesnoth-test/ca.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-03-01 17:41+0100\n" diff --git a/po/wesnoth-test/cs.po b/po/wesnoth-test/cs.po index 8f7a013f3b0..bf6af4dd36b 100644 --- a/po/wesnoth-test/cs.po +++ b/po/wesnoth-test/cs.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-01-22 11:23+0100\n" diff --git a/po/wesnoth-test/da.po b/po/wesnoth-test/da.po index ee477468029..3b02b8b18e4 100644 --- a/po/wesnoth-test/da.po +++ b/po/wesnoth-test/da.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-10-25 17:58+0200\n" diff --git a/po/wesnoth-test/el.po b/po/wesnoth-test/el.po index b1f37c2ca70..439db0df596 100644 --- a/po/wesnoth-test/el.po +++ b/po/wesnoth-test/el.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2007-07-27 00:48+0200\n" diff --git a/po/wesnoth-test/en_GB.po b/po/wesnoth-test/en_GB.po index 47c69c94466..3c7e63901f1 100644 --- a/po/wesnoth-test/en_GB.po +++ b/po/wesnoth-test/en_GB.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-07-07 05:59-0500\n" diff --git a/po/wesnoth-test/eo.po b/po/wesnoth-test/eo.po index d3164f070c7..7250f4ffa71 100644 --- a/po/wesnoth-test/eo.po +++ b/po/wesnoth-test/eo.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-02-12 20:47+0200\n" diff --git a/po/wesnoth-test/et.po b/po/wesnoth-test/et.po index 8d4d2608268..a0879e98350 100644 --- a/po/wesnoth-test/et.po +++ b/po/wesnoth-test/et.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2011-12-30 13:30+0300\n" diff --git a/po/wesnoth-test/eu.po b/po/wesnoth-test/eu.po index 80cbf861d40..6d1d6e5b7ef 100644 --- a/po/wesnoth-test/eu.po +++ b/po/wesnoth-test/eu.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2005-08-10 17:05+0200\n" diff --git a/po/wesnoth-test/fi.po b/po/wesnoth-test/fi.po index 85632a5331b..387734679b4 100644 --- a/po/wesnoth-test/fi.po +++ b/po/wesnoth-test/fi.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-11-22 17:23+0200\n" diff --git a/po/wesnoth-test/fur_IT.po b/po/wesnoth-test/fur_IT.po index 6159ca6b2d5..0207c1ef9c7 100644 --- a/po/wesnoth-test/fur_IT.po +++ b/po/wesnoth-test/fur_IT.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-04-26 13:45+0200\n" diff --git a/po/wesnoth-test/he.po b/po/wesnoth-test/he.po index ea59f4e4b5f..892ed5ec050 100644 --- a/po/wesnoth-test/he.po +++ b/po/wesnoth-test/he.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2005-12-18 23:18+0200\n" diff --git a/po/wesnoth-test/hr.po b/po/wesnoth-test/hr.po index 230e250a9be..a2b61ea6ef0 100644 --- a/po/wesnoth-test/hr.po +++ b/po/wesnoth-test/hr.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-09-01 18:47+0200\n" "PO-Revision-Date: 2012-08-20 12:22+0100\n" diff --git a/po/wesnoth-test/hu.po b/po/wesnoth-test/hu.po index 1b43a06a8e2..12df137bc0f 100644 --- a/po/wesnoth-test/hu.po +++ b/po/wesnoth-test/hu.po @@ -5,7 +5,7 @@ # Kádár-Németh Krisztián , 2009. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-01-06 23:57+0100\n" diff --git a/po/wesnoth-test/id.po b/po/wesnoth-test/id.po index 23805e6213a..7829326961c 100644 --- a/po/wesnoth-test/id.po +++ b/po/wesnoth-test/id.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2011-08-06 14:23+0700\n" diff --git a/po/wesnoth-test/is.po b/po/wesnoth-test/is.po index 094c03884f7..77a2566273e 100644 --- a/po/wesnoth-test/is.po +++ b/po/wesnoth-test/is.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-03-27 22:23+0000\n" diff --git a/po/wesnoth-test/it.po b/po/wesnoth-test/it.po index a4456c806c0..baecbb74ade 100644 --- a/po/wesnoth-test/it.po +++ b/po/wesnoth-test/it.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-04-05 15:59+0200\n" diff --git a/po/wesnoth-test/ja.po b/po/wesnoth-test/ja.po index d7de643fa59..d252a2705ca 100644 --- a/po/wesnoth-test/ja.po +++ b/po/wesnoth-test/ja.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2010-01-31 12:01+0900\n" diff --git a/po/wesnoth-test/ko.po b/po/wesnoth-test/ko.po index 8377fe85821..040928032ed 100644 --- a/po/wesnoth-test/ko.po +++ b/po/wesnoth-test/ko.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2010-11-27 11:19+0900\n" diff --git a/po/wesnoth-test/la.po b/po/wesnoth-test/la.po index 9945bf1c99e..42aba5a59d3 100644 --- a/po/wesnoth-test/la.po +++ b/po/wesnoth-test/la.po @@ -10,7 +10,7 @@ # Mark Polo (mpolo) msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-11-07 15:03-0500\n" diff --git a/po/wesnoth-test/mr.po b/po/wesnoth-test/mr.po index d152f82523b..f83f93ff7b7 100644 --- a/po/wesnoth-test/mr.po +++ b/po/wesnoth-test/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-08-31 11:47+0200\n" diff --git a/po/wesnoth-test/nb_NO.po b/po/wesnoth-test/nb_NO.po index 47c97d71a6f..b5b359b1c72 100644 --- a/po/wesnoth-test/nb_NO.po +++ b/po/wesnoth-test/nb_NO.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2006-01-01 20:13+0100\n" diff --git a/po/wesnoth-test/nl.po b/po/wesnoth-test/nl.po index 336baf76d2a..8cc44241740 100644 --- a/po/wesnoth-test/nl.po +++ b/po/wesnoth-test/nl.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-11-22 13:47+0100\n" diff --git a/po/wesnoth-test/pl.po b/po/wesnoth-test/pl.po index 92dfa880f35..1bd6b8c3264 100644 --- a/po/wesnoth-test/pl.po +++ b/po/wesnoth-test/pl.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-01-27 14:32+0100\n" diff --git a/po/wesnoth-test/pt.po b/po/wesnoth-test/pt.po index c385dcd4ef0..c75a7f22918 100644 --- a/po/wesnoth-test/pt.po +++ b/po/wesnoth-test/pt.po @@ -4,7 +4,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2012-10-27 15:56+0200\n" "PO-Revision-Date: 2013-03-02 22:17+0100\n" diff --git a/po/wesnoth-test/pt_BR.po b/po/wesnoth-test/pt_BR.po index fc220d16890..655d386bec2 100644 --- a/po/wesnoth-test/pt_BR.po +++ b/po/wesnoth-test/pt_BR.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2011-01-20 22:45-0300\n" diff --git a/po/wesnoth-test/racv.po b/po/wesnoth-test/racv.po index 3697944e664..9099f9c503f 100644 --- a/po/wesnoth-test/racv.po +++ b/po/wesnoth-test/racv.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2008-02-14 12:37+0100\n" diff --git a/po/wesnoth-test/ro.po b/po/wesnoth-test/ro.po index d2bb98803ea..faf215fae90 100644 --- a/po/wesnoth-test/ro.po +++ b/po/wesnoth-test/ro.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2006-04-10 20:11+0100\n" diff --git a/po/wesnoth-test/ru.po b/po/wesnoth-test/ru.po index 04945991f0c..89ab2a457ce 100644 --- a/po/wesnoth-test/ru.po +++ b/po/wesnoth-test/ru.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2012-04-07 02:44+0400\n" diff --git a/po/wesnoth-test/sk.po b/po/wesnoth-test/sk.po index a9cd86dc011..31ff8727b36 100644 --- a/po/wesnoth-test/sk.po +++ b/po/wesnoth-test/sk.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-01-18 17:37+0100\n" diff --git a/po/wesnoth-test/sl.po b/po/wesnoth-test/sl.po index e504c86eb75..ebf585ef5cb 100644 --- a/po/wesnoth-test/sl.po +++ b/po/wesnoth-test/sl.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2010-10-03 10:20+0100\n" diff --git a/po/wesnoth-test/sv.po b/po/wesnoth-test/sv.po index 1998b4b6473..ca3c3718fc1 100644 --- a/po/wesnoth-test/sv.po +++ b/po/wesnoth-test/sv.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2011-05-16 02:42+0100\n" diff --git a/po/wesnoth-test/tl.po b/po/wesnoth-test/tl.po index 98af9feb0fa..faa46f33950 100644 --- a/po/wesnoth-test/tl.po +++ b/po/wesnoth-test/tl.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2006-05-08 07:52-0000\n" diff --git a/po/wesnoth-test/vi.po b/po/wesnoth-test/vi.po index 7c04648065a..5661c77a10d 100644 --- a/po/wesnoth-test/vi.po +++ b/po/wesnoth-test/vi.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2010-06-13 15:03+0700\n" diff --git a/po/wesnoth-test/zh_TW.po b/po/wesnoth-test/zh_TW.po index 58e31f2b60e..443a299f3cb 100644 --- a/po/wesnoth-test/zh_TW.po +++ b/po/wesnoth-test/zh_TW.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2010-05-24 17:53+0200\n" "PO-Revision-Date: 2009-04-15 22:27+0800\n" diff --git a/po/wesnoth-thot/af.po b/po/wesnoth-thot/af.po index b3c13468640..47689e9f9bb 100644 --- a/po/wesnoth-thot/af.po +++ b/po/wesnoth-thot/af.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/ar.po b/po/wesnoth-thot/ar.po index 08797036c2d..215cac1b4f5 100644 --- a/po/wesnoth-thot/ar.po +++ b/po/wesnoth-thot/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-05-26 18:40+0200\n" diff --git a/po/wesnoth-thot/bg.po b/po/wesnoth-thot/bg.po index b3c13468640..47689e9f9bb 100644 --- a/po/wesnoth-thot/bg.po +++ b/po/wesnoth-thot/bg.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/el.po b/po/wesnoth-thot/el.po index 27cb92608a9..5474550d21a 100644 --- a/po/wesnoth-thot/el.po +++ b/po/wesnoth-thot/el.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-05-13 11:51+0200\n" diff --git a/po/wesnoth-thot/en@shaw.po b/po/wesnoth-thot/en@shaw.po index b50c1fae8f5..7f4499f371f 100644 --- a/po/wesnoth-thot/en@shaw.po +++ b/po/wesnoth-thot/en@shaw.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-10-07 15:42+0200\n" diff --git a/po/wesnoth-thot/en_GB.po b/po/wesnoth-thot/en_GB.po index 58bd7c72dc0..2ff34c6aa33 100644 --- a/po/wesnoth-thot/en_GB.po +++ b/po/wesnoth-thot/en_GB.po @@ -2,7 +2,7 @@ # Steven Panek , 2011. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-12-26 23:06-0500\n" diff --git a/po/wesnoth-thot/eo.po b/po/wesnoth-thot/eo.po index 12e03ebadd1..41b5bc45b93 100644 --- a/po/wesnoth-thot/eo.po +++ b/po/wesnoth-thot/eo.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/et.po b/po/wesnoth-thot/et.po index b7a9ad63867..f8a63f960fa 100644 --- a/po/wesnoth-thot/et.po +++ b/po/wesnoth-thot/et.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-12-29 20:11+0300\n" diff --git a/po/wesnoth-thot/eu.po b/po/wesnoth-thot/eu.po index b3c13468640..47689e9f9bb 100644 --- a/po/wesnoth-thot/eu.po +++ b/po/wesnoth-thot/eu.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/fi.po b/po/wesnoth-thot/fi.po index dfc68172c9b..c12c5e8fcda 100644 --- a/po/wesnoth-thot/fi.po +++ b/po/wesnoth-thot/fi.po @@ -1,7 +1,7 @@ # Samu Voutilainen , 2010. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2010-03-22 20:47+0200\n" diff --git a/po/wesnoth-thot/fur_IT.po b/po/wesnoth-thot/fur_IT.po index 2079834b71c..9170edfa695 100644 --- a/po/wesnoth-thot/fur_IT.po +++ b/po/wesnoth-thot/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-04-24 21:06+0200\n" diff --git a/po/wesnoth-thot/he.po b/po/wesnoth-thot/he.po index 12e03ebadd1..41b5bc45b93 100644 --- a/po/wesnoth-thot/he.po +++ b/po/wesnoth-thot/he.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/hr.po b/po/wesnoth-thot/hr.po index c4fa492f91c..a942c6274c0 100644 --- a/po/wesnoth-thot/hr.po +++ b/po/wesnoth-thot/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-03-02 23:13+0100\n" diff --git a/po/wesnoth-thot/id.po b/po/wesnoth-thot/id.po index 67e10bb78c5..88e142450cc 100644 --- a/po/wesnoth-thot/id.po +++ b/po/wesnoth-thot/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-11-15 16:57+0700\n" diff --git a/po/wesnoth-thot/is.po b/po/wesnoth-thot/is.po index 6775f041d63..5bfb13e59a1 100644 --- a/po/wesnoth-thot/is.po +++ b/po/wesnoth-thot/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-04-26 13:34-0000\n" diff --git a/po/wesnoth-thot/ja.po b/po/wesnoth-thot/ja.po index 5c9e70ff81a..e8bac9a249a 100644 --- a/po/wesnoth-thot/ja.po +++ b/po/wesnoth-thot/ja.po @@ -12,7 +12,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth svn trunk\n" +"Project-Id-Version: Battle for Wesnoth dev trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-11-11 04:21+0900\n" diff --git a/po/wesnoth-thot/ko.po b/po/wesnoth-thot/ko.po index ce3812a10ea..3ceab5aee85 100644 --- a/po/wesnoth-thot/ko.po +++ b/po/wesnoth-thot/ko.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/la.po b/po/wesnoth-thot/la.po index 756188cc3f9..da2e468d5eb 100644 --- a/po/wesnoth-thot/la.po +++ b/po/wesnoth-thot/la.po @@ -10,7 +10,7 @@ # Mark Polo (mpolo) msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-03-28 20:18+0100\n" diff --git a/po/wesnoth-thot/lv.po b/po/wesnoth-thot/lv.po index 321c44b8788..976aabe9321 100644 --- a/po/wesnoth-thot/lv.po +++ b/po/wesnoth-thot/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-05-26 18:40+0200\n" diff --git a/po/wesnoth-thot/mr.po b/po/wesnoth-thot/mr.po index 70d44fc3a52..28345438d07 100644 --- a/po/wesnoth-thot/mr.po +++ b/po/wesnoth-thot/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-01-18 14:02+0100\n" diff --git a/po/wesnoth-thot/nb_NO.po b/po/wesnoth-thot/nb_NO.po index 12e03ebadd1..41b5bc45b93 100644 --- a/po/wesnoth-thot/nb_NO.po +++ b/po/wesnoth-thot/nb_NO.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/pl.po b/po/wesnoth-thot/pl.po index 79cb8cd76f9..75a03b4fe91 100644 --- a/po/wesnoth-thot/pl.po +++ b/po/wesnoth-thot/pl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-01-21 18:40+0100\n" diff --git a/po/wesnoth-thot/pt.po b/po/wesnoth-thot/pt.po index edc1cd791b4..b2281395eac 100644 --- a/po/wesnoth-thot/pt.po +++ b/po/wesnoth-thot/pt.po @@ -1,7 +1,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2013-03-02 22:19+0100\n" diff --git a/po/wesnoth-thot/pt_BR.po b/po/wesnoth-thot/pt_BR.po index 1faa5e2fa08..9a4fd443ff1 100644 --- a/po/wesnoth-thot/pt_BR.po +++ b/po/wesnoth-thot/pt_BR.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-01-25 16:25-0300\n" diff --git a/po/wesnoth-thot/racv.po b/po/wesnoth-thot/racv.po index b3c13468640..47689e9f9bb 100644 --- a/po/wesnoth-thot/racv.po +++ b/po/wesnoth-thot/racv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/ro.po b/po/wesnoth-thot/ro.po index 2d3781faaba..9cdfd0e6cba 100644 --- a/po/wesnoth-thot/ro.po +++ b/po/wesnoth-thot/ro.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/sk.po b/po/wesnoth-thot/sk.po index 5e8a4a4ff05..6a1cc1eb4b9 100644 --- a/po/wesnoth-thot/sk.po +++ b/po/wesnoth-thot/sk.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2010-04-11 16:24+0100\n" diff --git a/po/wesnoth-thot/sl.po b/po/wesnoth-thot/sl.po index 56c4e66445d..1427ab28df9 100644 --- a/po/wesnoth-thot/sl.po +++ b/po/wesnoth-thot/sl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2010-09-26 16:54+0100\n" diff --git a/po/wesnoth-thot/sv.po b/po/wesnoth-thot/sv.po index 2169b313859..24f083d6843 100644 --- a/po/wesnoth-thot/sv.po +++ b/po/wesnoth-thot/sv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-09-13 13:54+0100\n" diff --git a/po/wesnoth-thot/tl.po b/po/wesnoth-thot/tl.po index b3c13468640..47689e9f9bb 100644 --- a/po/wesnoth-thot/tl.po +++ b/po/wesnoth-thot/tl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2007-12-15 14:30+0100\n" diff --git a/po/wesnoth-thot/vi.po b/po/wesnoth-thot/vi.po index 95001557fff..036649a9a32 100644 --- a/po/wesnoth-thot/vi.po +++ b/po/wesnoth-thot/vi.po @@ -5,7 +5,7 @@ # Automatically generated, 2009, 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2013-03-19 12:25+0800\n" diff --git a/po/wesnoth-thot/zh_TW.po b/po/wesnoth-thot/zh_TW.po index 51bd3513585..c79c34abb8a 100644 --- a/po/wesnoth-thot/zh_TW.po +++ b/po/wesnoth-thot/zh_TW.po @@ -1,7 +1,7 @@ # , 2009. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.12+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.12+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-08-25 19:56+0800\n" diff --git a/po/wesnoth-trow/ar.po b/po/wesnoth-trow/ar.po index 481e8d7be87..13f76070b37 100644 --- a/po/wesnoth-trow/ar.po +++ b/po/wesnoth-trow/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-26 18:40+0200\n" diff --git a/po/wesnoth-trow/eo.po b/po/wesnoth-trow/eo.po index 18feb0b0784..e3d28bebbf7 100644 --- a/po/wesnoth-trow/eo.po +++ b/po/wesnoth-trow/eo.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-12-05 10:48+0100\n" diff --git a/po/wesnoth-trow/fur_IT.po b/po/wesnoth-trow/fur_IT.po index 2a2c0c5b8ee..568d7f283d2 100644 --- a/po/wesnoth-trow/fur_IT.po +++ b/po/wesnoth-trow/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-04-13 16:25+0200\n" diff --git a/po/wesnoth-trow/he.po b/po/wesnoth-trow/he.po index ef53df866be..5dc87a986e4 100644 --- a/po/wesnoth-trow/he.po +++ b/po/wesnoth-trow/he.po @@ -7,7 +7,7 @@ # msgid "" msgstr "" -"Project-Id-Version: wesnoth-trow 1.1-svn\n" +"Project-Id-Version: wesnoth-trow 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-09-27 08:21+0300\n" diff --git a/po/wesnoth-trow/hr.po b/po/wesnoth-trow/hr.po index 14f8af6ead3..2db12917dfd 100644 --- a/po/wesnoth-trow/hr.po +++ b/po/wesnoth-trow/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-03-02 14:05+0100\n" diff --git a/po/wesnoth-trow/id.po b/po/wesnoth-trow/id.po index 796c997ff5c..e6a9486a5f4 100644 --- a/po/wesnoth-trow/id.po +++ b/po/wesnoth-trow/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-16 17:15+0700\n" diff --git a/po/wesnoth-trow/is.po b/po/wesnoth-trow/is.po index 1b64effe54a..f5e8508c769 100644 --- a/po/wesnoth-trow/is.po +++ b/po/wesnoth-trow/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-04-26 13:43-0000\n" diff --git a/po/wesnoth-trow/ja.po b/po/wesnoth-trow/ja.po index ee6040d41f6..b217c73b6fc 100644 --- a/po/wesnoth-trow/ja.po +++ b/po/wesnoth-trow/ja.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2010-12-27 11:26+0900\n" diff --git a/po/wesnoth-trow/ko.po b/po/wesnoth-trow/ko.po index 5dbba33103f..a3242eb0f65 100644 --- a/po/wesnoth-trow/ko.po +++ b/po/wesnoth-trow/ko.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-22 15:47+0900\n" diff --git a/po/wesnoth-trow/lv.po b/po/wesnoth-trow/lv.po index c49135a3583..d592a1d3198 100644 --- a/po/wesnoth-trow/lv.po +++ b/po/wesnoth-trow/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-06-18 20:04+0200\n" diff --git a/po/wesnoth-trow/mr.po b/po/wesnoth-trow/mr.po index ea7dca6a3fb..511e2971af3 100644 --- a/po/wesnoth-trow/mr.po +++ b/po/wesnoth-trow/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-01-16 21:55+0100\n" diff --git a/po/wesnoth-trow/pt.po b/po/wesnoth-trow/pt.po index 8d1fcf02540..eed21b4ef60 100644 --- a/po/wesnoth-trow/pt.po +++ b/po/wesnoth-trow/pt.po @@ -1,7 +1,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-02 22:21+0100\n" diff --git a/po/wesnoth-trow/ro.po b/po/wesnoth-trow/ro.po index 24d6fcd1d3c..b031bff8e1e 100644 --- a/po/wesnoth-trow/ro.po +++ b/po/wesnoth-trow/ro.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-11-04 22:10+0100\n" diff --git a/po/wesnoth-trow/tl.po b/po/wesnoth-trow/tl.po index ee68a103445..08c96823fed 100644 --- a/po/wesnoth-trow/tl.po +++ b/po/wesnoth-trow/tl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-05-05 16:31+0200\n" diff --git a/po/wesnoth-trow/vi.po b/po/wesnoth-trow/vi.po index cad4b6a8492..42a0e044fdc 100644 --- a/po/wesnoth-trow/vi.po +++ b/po/wesnoth-trow/vi.po @@ -7,7 +7,7 @@ # Phạm Thành Nam , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-23 13:32+0800\n" diff --git a/po/wesnoth-trow/zh_TW.po b/po/wesnoth-trow/zh_TW.po index f5f6f21884e..0457302ae0c 100644 --- a/po/wesnoth-trow/zh_TW.po +++ b/po/wesnoth-trow/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-04-15 22:48+0800\n" diff --git a/po/wesnoth-tsg/ar.po b/po/wesnoth-tsg/ar.po index d3a320e0e7c..4fcbeca5f3a 100644 --- a/po/wesnoth-tsg/ar.po +++ b/po/wesnoth-tsg/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-04-20 12:42+0200\n" diff --git a/po/wesnoth-tsg/fur_IT.po b/po/wesnoth-tsg/fur_IT.po index 6b468be16bc..b1db07e6230 100644 --- a/po/wesnoth-tsg/fur_IT.po +++ b/po/wesnoth-tsg/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-04-20 12:42+0200\n" diff --git a/po/wesnoth-tsg/hr.po b/po/wesnoth-tsg/hr.po index 4829ad5dbdc..bc96f016fb7 100644 --- a/po/wesnoth-tsg/hr.po +++ b/po/wesnoth-tsg/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2008-03-02 14:05+0100\n" diff --git a/po/wesnoth-tsg/id.po b/po/wesnoth-tsg/id.po index b5862fb7aa5..6486de33d59 100644 --- a/po/wesnoth-tsg/id.po +++ b/po/wesnoth-tsg/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-11-16 17:21+0700\n" diff --git a/po/wesnoth-tsg/is.po b/po/wesnoth-tsg/is.po index c4026d47b9a..a5e6dead866 100644 --- a/po/wesnoth-tsg/is.po +++ b/po/wesnoth-tsg/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-04-26 13:48-0000\n" diff --git a/po/wesnoth-tsg/ko.po b/po/wesnoth-tsg/ko.po index 14ff4561c9a..c1918aa729a 100644 --- a/po/wesnoth-tsg/ko.po +++ b/po/wesnoth-tsg/ko.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2012-02-28 16:59+0900\n" diff --git a/po/wesnoth-tsg/lv.po b/po/wesnoth-tsg/lv.po index 4b880794426..3e6ccabb28c 100644 --- a/po/wesnoth-tsg/lv.po +++ b/po/wesnoth-tsg/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9.10+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.9.10+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-11-13 01:04+0300\n" diff --git a/po/wesnoth-tsg/mr.po b/po/wesnoth-tsg/mr.po index 1557f364da4..b5dbfbc54f5 100644 --- a/po/wesnoth-tsg/mr.po +++ b/po/wesnoth-tsg/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2009-02-01 18:03+0100\n" diff --git a/po/wesnoth-tsg/tl.po b/po/wesnoth-tsg/tl.po index e1e4ee8223f..639d9ab8be3 100644 --- a/po/wesnoth-tsg/tl.po +++ b/po/wesnoth-tsg/tl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2006-05-05 16:32+0200\n" diff --git a/po/wesnoth-tsg/vi.po b/po/wesnoth-tsg/vi.po index 13ea6697224..cf314d2939d 100644 --- a/po/wesnoth-tsg/vi.po +++ b/po/wesnoth-tsg/vi.po @@ -8,7 +8,7 @@ # Huynh Yen Loc , 2010, 2011. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-09 08:51+0100\n" "PO-Revision-Date: 2011-03-30 14:11SE Asi\n" diff --git a/po/wesnoth-tutorial/af.po b/po/wesnoth-tutorial/af.po index b00c98c1426..10578de30d7 100644 --- a/po/wesnoth-tutorial/af.po +++ b/po/wesnoth-tutorial/af.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-12-14 12:32+0200\n" diff --git a/po/wesnoth-tutorial/ar.po b/po/wesnoth-tutorial/ar.po index b40833924fe..37d95b501cd 100644 --- a/po/wesnoth-tutorial/ar.po +++ b/po/wesnoth-tutorial/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-26 18:39+0200\n" diff --git a/po/wesnoth-tutorial/ca.po b/po/wesnoth-tutorial/ca.po index 595a69b0746..9e3d70f181f 100644 --- a/po/wesnoth-tutorial/ca.po +++ b/po/wesnoth-tutorial/ca.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.5.5+svn\n" +"Project-Id-Version: 1.5.5+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-10-17 22:30+0200\n" diff --git a/po/wesnoth-tutorial/el.po b/po/wesnoth-tutorial/el.po index b11af6c10bd..58dc00cffe7 100644 --- a/po/wesnoth-tutorial/el.po +++ b/po/wesnoth-tutorial/el.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-09-28 12:24+0100\n" diff --git a/po/wesnoth-tutorial/eo.po b/po/wesnoth-tutorial/eo.po index 7f77be39df9..b08847b4301 100644 --- a/po/wesnoth-tutorial/eo.po +++ b/po/wesnoth-tutorial/eo.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-03-01 17:34+0200\n" diff --git a/po/wesnoth-tutorial/et.po b/po/wesnoth-tutorial/et.po index b27952b9402..fb6d0ee2d8a 100644 --- a/po/wesnoth-tutorial/et.po +++ b/po/wesnoth-tutorial/et.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-04-02 21:59+0300\n" diff --git a/po/wesnoth-tutorial/eu.po b/po/wesnoth-tutorial/eu.po index d725f4cf1e9..4b768090ab5 100644 --- a/po/wesnoth-tutorial/eu.po +++ b/po/wesnoth-tutorial/eu.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-10-15 01:54+0200\n" diff --git a/po/wesnoth-tutorial/fur_IT.po b/po/wesnoth-tutorial/fur_IT.po index 9af303f955f..9f0ef402574 100644 --- a/po/wesnoth-tutorial/fur_IT.po +++ b/po/wesnoth-tutorial/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-04-20 12:40+0200\n" diff --git a/po/wesnoth-tutorial/hr.po b/po/wesnoth-tutorial/hr.po index b13e5f6a2c3..17b339bcd1b 100644 --- a/po/wesnoth-tutorial/hr.po +++ b/po/wesnoth-tutorial/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-08-29 10:28+0100\n" diff --git a/po/wesnoth-tutorial/id.po b/po/wesnoth-tutorial/id.po index 5db02cbf889..38d05995ccf 100644 --- a/po/wesnoth-tutorial/id.po +++ b/po/wesnoth-tutorial/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-16 16:22+0700\n" diff --git a/po/wesnoth-tutorial/is.po b/po/wesnoth-tutorial/is.po index 16a2e403e46..2f0d1829d04 100644 --- a/po/wesnoth-tutorial/is.po +++ b/po/wesnoth-tutorial/is.po @@ -1,7 +1,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-06-15 15:04-0000\n" diff --git a/po/wesnoth-tutorial/ja.po b/po/wesnoth-tutorial/ja.po index fda4a9dbb78..c0b8941127b 100644 --- a/po/wesnoth-tutorial/ja.po +++ b/po/wesnoth-tutorial/ja.po @@ -1,4 +1,4 @@ -# #-#-#-#-# ja.po (Battle for Wesnoth 1.9-svn) #-#-#-#-# +# #-#-#-#-# ja.po (Battle for Wesnoth 1.9-dev) #-#-#-#-# # Japanese translations for Battle for Wesnoth package. # Copyright (C) 2005-2010 Wesnoth development team # This file is distributed under the same license as the Battle for Wesnoth package. @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.9-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-05 07:36+0900\n" diff --git a/po/wesnoth-tutorial/ko.po b/po/wesnoth-tutorial/ko.po index 063c414778e..380b5c31180 100644 --- a/po/wesnoth-tutorial/ko.po +++ b/po/wesnoth-tutorial/ko.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-09-28 15:16+0900\n" diff --git a/po/wesnoth-tutorial/mr.po b/po/wesnoth-tutorial/mr.po index 789c4a96d65..0036ed5eff7 100644 --- a/po/wesnoth-tutorial/mr.po +++ b/po/wesnoth-tutorial/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-12-03 19:43+0100\n" diff --git a/po/wesnoth-tutorial/nb_NO.po b/po/wesnoth-tutorial/nb_NO.po index 0cc3f013521..934b6114442 100644 --- a/po/wesnoth-tutorial/nb_NO.po +++ b/po/wesnoth-tutorial/nb_NO.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-04-07 22:15+0100\n" diff --git a/po/wesnoth-tutorial/pt.po b/po/wesnoth-tutorial/pt.po index f113d9060c6..86b1511615a 100644 --- a/po/wesnoth-tutorial/pt.po +++ b/po/wesnoth-tutorial/pt.po @@ -1,7 +1,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-02 22:26+0100\n" diff --git a/po/wesnoth-tutorial/ro.po b/po/wesnoth-tutorial/ro.po index 601e2bb9ffa..132d5c1d1fa 100644 --- a/po/wesnoth-tutorial/ro.po +++ b/po/wesnoth-tutorial/ro.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2005-11-04 22:09+0100\n" diff --git a/po/wesnoth-tutorial/tl.po b/po/wesnoth-tutorial/tl.po index 14aeeeefc0e..3de4ac4868b 100644 --- a/po/wesnoth-tutorial/tl.po +++ b/po/wesnoth-tutorial/tl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-04-29 15:32+0200\n" diff --git a/po/wesnoth-tutorial/zh_TW.po b/po/wesnoth-tutorial/zh_TW.po index 842fd082b49..cca6eb4e103 100644 --- a/po/wesnoth-tutorial/zh_TW.po +++ b/po/wesnoth-tutorial/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-05-31 19:44+0800\n" diff --git a/po/wesnoth-units/ar.po b/po/wesnoth-units/ar.po index e6b2b1c9a23..553da761eef 100644 --- a/po/wesnoth-units/ar.po +++ b/po/wesnoth-units/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-26 18:38+0200\n" diff --git a/po/wesnoth-units/ca.po b/po/wesnoth-units/ca.po index 6820f570374..0445885a250 100644 --- a/po/wesnoth-units/ca.po +++ b/po/wesnoth-units/ca.po @@ -12,7 +12,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.6.0+svn\n" +"Project-Id-Version: 1.6.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-03-22 08:50+0100\n" diff --git a/po/wesnoth-units/fur_IT.po b/po/wesnoth-units/fur_IT.po index 39ab19a46a0..c61f78ace12 100644 --- a/po/wesnoth-units/fur_IT.po +++ b/po/wesnoth-units/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-11 16:12+0200\n" diff --git a/po/wesnoth-units/hr.po b/po/wesnoth-units/hr.po index fa1db1cd9aa..1a914fd3926 100644 --- a/po/wesnoth-units/hr.po +++ b/po/wesnoth-units/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-03-06 10:56+0100\n" diff --git a/po/wesnoth-units/id.po b/po/wesnoth-units/id.po index 27d44e6d668..aafe76203ed 100644 --- a/po/wesnoth-units/id.po +++ b/po/wesnoth-units/id.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-11-24 17:35+0700\n" diff --git a/po/wesnoth-units/is.po b/po/wesnoth-units/is.po index 25e0378580f..938a5332ef7 100644 --- a/po/wesnoth-units/is.po +++ b/po/wesnoth-units/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-05-10 12:21-0000\n" diff --git a/po/wesnoth-units/ja.po b/po/wesnoth-units/ja.po index 25bbec44cd9..34b69bc2a0e 100644 --- a/po/wesnoth-units/ja.po +++ b/po/wesnoth-units/ja.po @@ -9,7 +9,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth svn-trunk\n" +"Project-Id-Version: Battle for Wesnoth dev-trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2011-10-02 05:06+0900\n" diff --git a/po/wesnoth-units/ko.po b/po/wesnoth-units/ko.po index 1d1b730d3a7..410c795aa03 100644 --- a/po/wesnoth-units/ko.po +++ b/po/wesnoth-units/ko.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-04-29 20:23+0900\n" diff --git a/po/wesnoth-units/mr.po b/po/wesnoth-units/mr.po index f15862e924d..435291c6047 100644 --- a/po/wesnoth-units/mr.po +++ b/po/wesnoth-units/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-02-01 17:59+0100\n" diff --git a/po/wesnoth-units/pt.po b/po/wesnoth-units/pt.po index 89bdfd08d43..3228fea410d 100644 --- a/po/wesnoth-units/pt.po +++ b/po/wesnoth-units/pt.po @@ -6,7 +6,7 @@ # trewe , 2013. msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2013-03-02 22:28+0100\n" diff --git a/po/wesnoth-units/tl.po b/po/wesnoth-units/tl.po index 22e1b170d40..840c2d74a89 100644 --- a/po/wesnoth-units/tl.po +++ b/po/wesnoth-units/tl.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-05-05 16:30+0200\n" diff --git a/po/wesnoth-utbs/ar.po b/po/wesnoth-utbs/ar.po index c8d967ad4f0..6881cea92d7 100644 --- a/po/wesnoth-utbs/ar.po +++ b/po/wesnoth-utbs/ar.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-26 18:41+0200\n" diff --git a/po/wesnoth-utbs/en@shaw.po b/po/wesnoth-utbs/en@shaw.po index 338daa24e4e..d120fe9d6df 100644 --- a/po/wesnoth-utbs/en@shaw.po +++ b/po/wesnoth-utbs/en@shaw.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-10-07 15:42+0200\n" diff --git a/po/wesnoth-utbs/fur_IT.po b/po/wesnoth-utbs/fur_IT.po index 176c357c3e5..98ae339a94f 100644 --- a/po/wesnoth-utbs/fur_IT.po +++ b/po/wesnoth-utbs/fur_IT.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-05-11 16:13+0200\n" diff --git a/po/wesnoth-utbs/hr.po b/po/wesnoth-utbs/hr.po index 888ddbe1e02..3730c18e25e 100644 --- a/po/wesnoth-utbs/hr.po +++ b/po/wesnoth-utbs/hr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-03-06 10:58+0100\n" diff --git a/po/wesnoth-utbs/id.po b/po/wesnoth-utbs/id.po index 5a12d417919..bd9153ecc74 100644 --- a/po/wesnoth-utbs/id.po +++ b/po/wesnoth-utbs/id.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-01-27 22:44+0700\n" diff --git a/po/wesnoth-utbs/is.po b/po/wesnoth-utbs/is.po index d2fa66958b9..e8a5f78c74d 100644 --- a/po/wesnoth-utbs/is.po +++ b/po/wesnoth-utbs/is.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.6+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.6+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-04-26 14:00-0000\n" diff --git a/po/wesnoth-utbs/ko.po b/po/wesnoth-utbs/ko.po index 5ae8f5dd27e..abb57febd63 100644 --- a/po/wesnoth-utbs/ko.po +++ b/po/wesnoth-utbs/ko.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-03-19 21:58-0800\n" diff --git a/po/wesnoth-utbs/lv.po b/po/wesnoth-utbs/lv.po index 32994981cd4..1d61471c335 100644 --- a/po/wesnoth-utbs/lv.po +++ b/po/wesnoth-utbs/lv.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2008-06-20 12:45+0200\n" diff --git a/po/wesnoth-utbs/mr.po b/po/wesnoth-utbs/mr.po index 334d746d6b3..15491255d53 100644 --- a/po/wesnoth-utbs/mr.po +++ b/po/wesnoth-utbs/mr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.9+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.9+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-01-30 22:45+0100\n" diff --git a/po/wesnoth-utbs/tl.po b/po/wesnoth-utbs/tl.po index 485490c3414..f62b255ad53 100644 --- a/po/wesnoth-utbs/tl.po +++ b/po/wesnoth-utbs/tl.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2006-05-05 16:32+0200\n" diff --git a/po/wesnoth-utbs/vi.po b/po/wesnoth-utbs/vi.po index 628a444b8c1..26dfccdabf1 100644 --- a/po/wesnoth-utbs/vi.po +++ b/po/wesnoth-utbs/vi.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.5.7+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.5.7+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2009-09-06 15:04+0200\n" diff --git a/po/wesnoth-utbs/zh_TW.po b/po/wesnoth-utbs/zh_TW.po index cb54f9051c8..68d05ff3189 100644 --- a/po/wesnoth-utbs/zh_TW.po +++ b/po/wesnoth-utbs/zh_TW.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3.19+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3.19+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-24 13:24+0100\n" "PO-Revision-Date: 2012-11-04 08:19+0800\n" diff --git a/po/wesnoth/ar.po b/po/wesnoth/ar.po index 17892f26c7f..a084fc41812 100644 --- a/po/wesnoth/ar.po +++ b/po/wesnoth/ar.po @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.4.2+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.4.2+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2008-05-31 16:55-0000\n" diff --git a/po/wesnoth/ca.po b/po/wesnoth/ca.po index e4e6f9fd40a..8e0ea5efa6e 100644 --- a/po/wesnoth/ca.po +++ b/po/wesnoth/ca.po @@ -12,7 +12,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.6.0+svn\n" +"Project-Id-Version: 1.6.0+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2009-03-21 20:49+0100\n" diff --git a/po/wesnoth/ca_ES@valencia.po b/po/wesnoth/ca_ES@valencia.po index b03e3edf5eb..52d4f67e698 100644 --- a/po/wesnoth/ca_ES@valencia.po +++ b/po/wesnoth/ca_ES@valencia.po @@ -13,7 +13,7 @@ # msgid "" msgstr "" -"Project-Id-Version: 1.5.8+svn\n" +"Project-Id-Version: 1.5.8+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2009-01-31 21:25+0100\n" diff --git a/po/wesnoth/hr.po b/po/wesnoth/hr.po index 931f88318c3..96ab59ad2d2 100644 --- a/po/wesnoth/hr.po +++ b/po/wesnoth/hr.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.4+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.4+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2012-09-03 17:35+0100\n" diff --git a/po/wesnoth/id.po b/po/wesnoth/id.po index 1781584539c..450624aea0f 100644 --- a/po/wesnoth/id.po +++ b/po/wesnoth/id.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2011-11-24 17:31+0700\n" diff --git a/po/wesnoth/is.po b/po/wesnoth/is.po index a1044bb641a..601b5663f71 100644 --- a/po/wesnoth/is.po +++ b/po/wesnoth/is.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.7.0-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.7.0-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2009-06-15 15:08-0000\n" diff --git a/po/wesnoth/ja.po b/po/wesnoth/ja.po index 9f107352de6..3dd56951f8d 100644 --- a/po/wesnoth/ja.po +++ b/po/wesnoth/ja.po @@ -16,7 +16,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth svn-trunk\n" +"Project-Id-Version: Battle for Wesnoth dev-trunk\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2013-02-23 12:27+0900\n" diff --git a/po/wesnoth/ko.po b/po/wesnoth/ko.po index 79d0955fba8..a99062cb1e0 100644 --- a/po/wesnoth/ko.po +++ b/po/wesnoth/ko.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1.1+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1.1+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2011-12-01 14:25+0900\n" diff --git a/po/wesnoth/lv.po b/po/wesnoth/lv.po index 0b3c4937786..454ef2a26f0 100644 --- a/po/wesnoth/lv.po +++ b/po/wesnoth/lv.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.9.10+svn\n" +"Project-Id-Version: Battle for Wesnoth 1.9.10+dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2011-11-15 17:56+0300\n" diff --git a/po/wesnoth/pt.po b/po/wesnoth/pt.po index 812a1fba9bd..2f4b9d27d5b 100644 --- a/po/wesnoth/pt.po +++ b/po/wesnoth/pt.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.1-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.1-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2012-12-12 12:45+0100\n" diff --git a/po/wesnoth/racv.po b/po/wesnoth/racv.po index 8c075a4fd7a..9b36b5bb531 100644 --- a/po/wesnoth/racv.po +++ b/po/wesnoth/racv.po @@ -6,7 +6,7 @@ # msgid "" msgstr "" -"Project-Id-Version: Battle for Wesnoth 1.3-svn\n" +"Project-Id-Version: Battle for Wesnoth 1.3-dev\n" "Report-Msgid-Bugs-To: http://bugs.wesnoth.org/\n" "POT-Creation-Date: 2013-03-16 23:53+0100\n" "PO-Revision-Date: 2008-09-24 02:09+0100\n" diff --git a/projectfiles/CodeBlocks/README.txt b/projectfiles/CodeBlocks/README.txt index e1ea5723801..0590478a4b1 100644 --- a/projectfiles/CodeBlocks/README.txt +++ b/projectfiles/CodeBlocks/README.txt @@ -1,5 +1,8 @@ README.txt +(FIXME-GIT: These directions are slightly broken following the git +transition and will need to be updated.) + Compiling wesnoth on windows using CodeBlocks 10.05 (June 2011, development version 1.9.6+svn r49843, earlier source versions untested) diff --git a/projectfiles/VC9/README.txt b/projectfiles/VC9/README.txt index 40e6bbda7b9..e69b45532ff 100644 --- a/projectfiles/VC9/README.txt +++ b/projectfiles/VC9/README.txt @@ -1,11 +1,14 @@ README.txt ========== + +(Note: these instructions may require revision following the git transition.) + NEW WAY (using cmake): Wesnoth 1.9 (since r41888) and branches/1.8 (since r42011) can be compiled using cmake+msvc9 - 1. make sure that svn command-line executable is in your %PATH% + 1. make sure that git command-line executable is in your %PATH% 2. for wesnoth 1.8 and early pre-1.9 versions: download ftp://ftp.terraninfo.net/wesnoth/msvc9/external.zip (55mb download) and unpack it into wesnoth's directory - so, there'll be an 'external' @@ -21,278 +24,5 @@ can be compiled using cmake+msvc9 7. open generated project file in msvc9 and compile. the project should pick up changes in cmake files automatically. Also, you can re-run the .bat file to regenerate it. - -========== -OLD WAY (using a standalone project file): -This is a HowTo guide to help setting up MSVC 2008 (aka VC9) to -compile Wesnoth. - - -1. If you haven't already, install MSVC 2008 - - -2. Download and install TortoiseSVN if you intend on building from - the WesnothSVN: - http://tortoisesvn.net/downloads - Otherwise skip this step. - - -3. To download the trunk or a branch from the WesnothSVN follow the - instructions here: - http://www.wesnoth.org/wiki/SVN_on_Windows - Alternatively get the source code from here: - http://www.wesnoth.org/wiki/Download - - For convenience we'll assume that the target folder is: - C:\projects\wesnoth\trunk - - -4. In order to prevent extensive manual modifications to the - wesnoth.vcproj and wesnothd.vcproj files, we'll set up two - 'General Folders' for libraries and includes to store most of - the prerequisites. (Otherwise each configuration setting for - each project would need to have each and every 'lib' and - 'include' folder added.) - C:\projects\_include - C:\projects\_lib - - -5. We'll now start downloading and compiling/copying the - prerequisites into the necessary folders: - - -5a. >=zlib-1.2.3 ( http://www.zlib.net/ ) - - Download the zlib source code - zlib123.zip - and unpack it into the projects folder to get: - C:\projects\zlib123\ - - Open the file zlib.dsw in the folder - C:\projects\zlib123\projects\visualc6\ - with MSVC and select 'Yes To All' to convert it into a VC9 project. - - Open the properties of the 'zlib' solution and in the - 'Configuration Properties' select the 'DLL Release' - 'Configuration'. Select 'OK' and then right-click the 'zlib' - project and select 'Build'. After a successful Build, close that - instance of MSVC. - - -5b. >=libsdl-1.2.7 ( http://www.libsdl.org ) - - Download the development library file for Win32 as well as the - source code - SDL-1.2.13.zip - SDL-devel-1.2.13-VC8.zip - and unpack them into the projects folder to get: - C:\projects\SDL-1.2.13\ - - Copy the 'SDL.dll' and the 'SDL.lib' from the 'lib' folder - and the contents of 'include' folder into the corresponding - 'General Folder' ( ...\_include\ resp. ...\_lib\ ). - - Unpack the 'VisualC.zip' and open the 'SDL.sln' file with MSVC. - Follow the instructions to convert the project to VC9. - - Right-click the 'SDLmain' project and select 'Build'. After a - successful Build, close that instance of MSVC. - - Copy 'SDLmain.lib' from - C:\projects\SDL-1.2.13\VisualC\SDLmain\Debug - into the 'lib' 'General Folder'. - - -5c. >=libboost-1.33.0 ( http://www.boost.org/ ) - - Download Boost and unpack it into the folder - C:\projects\ - - This should give you a folder structure like - C:\projects\boost_1_38_0\ - - Download the pre-built bjam executable - boost-jam-3.1.17-1-ntx86.zip - from the bjam download page on sourceforge - http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=72941 - and unpack and move the bjam executable it into the base folder - of boost - C:\projects\boost_1_38_0\ - - Now start the command prompt (CMD.exe) and invoke the following - commands: - C:\> set ZLIB_SOURCE=C:\projects\zlib123\ - C:\> set ZLIB_LIBPATH=C:\projects\zlib123\projects\visualc6\Win32_DLL_Release - C:\> set ZLIB_BINARY=zlib1.dll - C:\> cd C:\projects\boost_1_38_0 - C:\projects\boost_1_38_0> bjam ^ - More? --toolset=msvc ^ - More? --build-type=complete ^ - More? --prefix="C:\projects\Boost\" install - - If the upper last command doesn't work, replace the last line with: - --prefix="C:\projects\Boost" install - - Now bjam will compile all variants of the boost library binaries - for MSVC 2008 and copies them into the folder - C:\projects\Boost\lib\ - while all required headers are copied into - C:\projects\Boost\include\boost-1_38\boost - - Use the time bjam is busy compiling (possibly several hours) as - you wish. (It is possible to continue downloading and copying - the include and lib files since all required compiling is done.) - - Once bjam has finished building/copying, you then can delete - the folder - C:\projects\boost_1_38_0\ - to free up space. - - -5d. >=sdl-image-1.2 (with PNG support) - ( http://www.libsdl.org/projects/SDL_image ) - - Download the binary file for Win32 - SDL_image-devel-1.2.7-VC9.zip - and unpack it into the projects folder to get: - C:\projects\SDL_image-1.2.7\ - - Copy the contents of each the 'lib' and the 'include' folder - into the corresponding 'General Folder'. - - -5e. >=sdl-mixer-1.2 (with Vorbis support) - ( http://www.libsdl.org/projects/SDL_mixer ) - - Download the binary file for Win32 - SDL_mixer-devel-1.2.8-VC8.zip - and unpack it into the projects folder to get: - C:\projects\SDL_mixer-1.2.8\ - - Copy the contents of each the 'lib' and the 'include' folder - into the corresponding 'General Folder'. - - -5f. >=sdl-net-1.2 ( http://www.libsdl.org/projects/SDL_net ) - - Download the binary file for Win32 - SDL_net-devel-1.2.7-VC8.zip - and unpack it into the projects folder to get: - C:\projects\SDL_net-1.2.7\ - - Copy the contents of each the 'lib' and the 'include' folder - into the corresponding 'General Folder'. - - -5g. >=sdl-ttf-2.0.8 ( http://www.libsdl.org/projects/SDL_ttf ) - - Download the binary file for Win32 - SDL_ttf-devel-2.0.9-VC8.zip - and unpack it into the projects folder to get: - C:\projects\SDL_ttf-2.0.9\ - - Copy the contents of each the 'lib' and the 'include' folder - into the corresponding 'General Folder'. - - -5h. >=libintl-0.14.4 - ( http://gnuwin32.sourceforge.net/packages/gettext.htm ) - - Download the 'Binaries', 'Dependencies' and the - 'Developer files' - gettext-0.14.4-bin.zip - gettext-0.14.4-dep.zip - gettext-0.14.4-lib.zip - and unpack them all into the projects folder to get: - C:\projects\gettext-0.14.4\ - - Copy the contents of each the 'lib' and the 'include' folder - into the corresponding 'General Folder'. - Copy all dll's from the 'bin' folder into the '_lib' - 'General Folder'. - - -5i. >=libfontconfig-2.4.1 - ( http://www.gtk.org/download-windows.html ) - - Download the 'Fontconfig' package 'Binaries' from the - 'Third Party Dependencies' - fontconfig-2.4.2-tml-20071015.zip - and unpack it into the projects folder to get: - C:\projects\fontconfig-2.4.2\ - - Copy the 'libfontconfig-1.dll' from the 'bin' folder into the - 'lib' 'General Folder'. - - -5j. >=lua-5.1.4 ( http://luabinaries.luaforge.net/download.html ) - - Download the 'Windows x86 DLL and Includes (Visual C++ 2005 - Compatible)' - lua5_1_4_Win32_dll8_lib.zip - and unpack it into the projects folder to get: - C:\projects\lua-5.1.4\ - - Copy the dll's and the lib's into the 'lib' 'General Folder' and - the content of the 'include' folder into the corresponding ' - General Folder'. - - -5k. >=pangocairo-1.24.4 ( http://www.gtk.org/download-windows.html ) - - Download the following 'Binaryies' and 'Dev' packages from the - 'GTK+ individual packages' - cairo_1.8.6-1_win32.zip - cairo-dev_1.8.6-1_win32.zip - glib_2.20.0-1_win32.zip - glib-dev_2.20.0-1_win32.zip - pango_1.24.0-1_win32.zip - pango-dev_1.24.0-1_win32.zip - and unpack them into the projects folder to get: - C:\projects\pangocairo\ - - Copy all dll's from the 'bin' folder into the '_lib' - 'General Folder'. - Copy the contents (but not the subfolders) of the 'lib' folder - into the corresponding 'General Folder'. - Copy the 'glibconfig.h' file from - C:\projects\pangocairo\lib\glib-2.0\include into the '_include' - 'General Folder'. - Copy the contens (including subfolders) of the following folders - into the '_include' 'General Folder': - C:\projects\pangocairo\include\cairo - C:\projects\pangocairo\include\glib-2.0 - C:\projects\pangocairo\include\pango-1.0 - - -6. MSVC needs to find all needed includes and libraries, so open - Tools --> Options --> Projects and Solutions - --> VC++ Directories - - In the 'Include file' directories add: - C:\projects\_include - C:\projects\Boost\include\boost-1_38\ - - In the 'Library files' directories add: - C:\projects\_lib - C:\projects\Boost\lib\ - - And to be able to launch wesnoth.exe and wesnothd.exe from - within MSVC, we'll need to add the 'C:\projects\_lib' folder - to windows PATH environment variable: - - Start the CMD.exe and type in the following command (adjusted - to your own folder-structure!) and press enter. - C:\> path = %PATH%;C:\projects\_lib - - Note that it is recommended to restart windows now in order to - prevent issues with the compiled executables not finding - required dll's. - - -7. Open the 'wesnoth.sln' file in the - C:\projects\wesnoth\trunk\projectfiles\VC9 - folder with MSVC. - You are now ready to build wesnoth and wesnothd with MSVC. diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index aabb818883a..790d4ca7119 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -136,31 +136,6 @@ endif(X11_FOUND) # Create targets for revision.hpp # -find_program(SVNVERSION_EXECUTABLE "svnversion") - -set(REVISION_FILE) -if(SVNVERSION_EXECUTABLE AND NOT ENABLE_DISPLAY_REVISION) - execute_process(COMMAND ${SVNVERSION_EXECUTABLE} -n ${CMAKE_SOURCE_DIR} - OUTPUT_VARIABLE SVN_VERSION) - if(SVN_VERSION MATCHES [0-9]+.*) - add_custom_target(update_revision ALL - COMMAND ${CMAKE_COMMAND} - -DSVNVERSION_EXECUTABLE="${SVNVERSION_EXECUTABLE}" - -DSRC_DIR="${CMAKE_SOURCE_DIR}" - -P "${CMAKE_MODULE_PATH}/revision.cmake" - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - COMMENT "Updating revision") - - set(REVISION_FILE revision.hpp) - set_source_files_properties( - revision.hpp - PROPERTIES GENERATED true) - add_definitions(-DHAVE_REVISION) - - set(UPDATE_REVISION ON CACHE INTERNAL "") - endif(SVN_VERSION MATCHES [0-9]+.*) -endif() - if(MSVC) SOURCE_GROUP("src" REGULAR_EXPRESSION ".*") SOURCE_GROUP("src ai" REGULAR_EXPRESSION "ai/.*") diff --git a/src/SConscript b/src/SConscript index 1b7f8063afc..097c4289450 100644 --- a/src/SConscript +++ b/src/SConscript @@ -640,13 +640,6 @@ create_images_sources = Split(""" env.WesnothProgram("create_images", create_images_sources + [libwesnoth_core], have_server_prereqs, OBJPREFIX = "create_images_", LIBS = ["$LIBS", "png"]) -if env["svnrev"] != "" and env["svnrev"] != "exported": - revision_define = "#define REVISION \"%s\"\n" % env["svnrev"] - env.Command("#/src/revision.hpp", Value(env["svnrev"]), Action( - lambda target, source, env: open(str(target[0]), "w").write(revision_define), - "Generating revision.hpp..." - )) - game_config_env.Append(CPPDEFINES = 'HAVE_REVISION') if env.get("have_autorevision"): game_config_env.Append(CPPDEFINES = 'LOAD_REVISION') diff --git a/src/ana/api/ana.hpp b/src/ana/api/ana.hpp index dd18a3f51e6..d113531a4ce 100644 --- a/src/ana/api/ana.hpp +++ b/src/ana/api/ana.hpp @@ -47,8 +47,8 @@ * This project is being carried out as part of a Google Summer of Code 2010 * project to reimplement Wesnoth's stack. * - * The projects' source code can be found at: - * Wesnoth's repository + * The project's source code can be found in the src/ana directory of + * the Battle for Wesnoth repository * * @section requirements Requirements * To compile ana, you need: diff --git a/src/boilerplate-header.cpp b/src/boilerplate-header.cpp index ff6774f5c72..9059d544cda 100644 --- a/src/boilerplate-header.cpp +++ b/src/boilerplate-header.cpp @@ -18,6 +18,3 @@ * Template for new cpp-files. */ -// After adding the file don't forget to set the properties -// svn propset svn:keywords 'Author Date Id Revision' file -// svn propset svn:eol-style 'native' file diff --git a/src/tests/test_version.cpp b/src/tests/test_version.cpp index 52dafd6b290..1d2baa6090c 100644 --- a/src/tests/test_version.cpp +++ b/src/tests/test_version.cpp @@ -30,7 +30,7 @@ BOOST_AUTO_TEST_CASE( test_version_info ) BOOST_CHECK( canonical.is_canonical() ); - version_info canonical_suffixed("1.2.3+svn"); + version_info canonical_suffixed("1.2.3+dev"); BOOST_CHECK( canonical_suffixed > canonical ); BOOST_CHECK( canonical < canonical_suffixed ); @@ -39,7 +39,7 @@ BOOST_AUTO_TEST_CASE( test_version_info ) BOOST_CHECK( !non_canonical.is_canonical() ); - version_info non_canonical_suffixed("1.2.3.4.5.7.8.9+svn"); + version_info non_canonical_suffixed("1.2.3.4.5.7.8.9+dev"); BOOST_CHECK( non_canonical_suffixed > non_canonical ); BOOST_CHECK( non_canonical < non_canonical_suffixed ); diff --git a/src/version.cpp b/src/version.cpp index 0580e34ed44..bae8c88c4eb 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -47,7 +47,7 @@ version_info::version_info(const std::string& str) // // The breakpoint is where the "special" version component begins. - // For 1.1.2a it would at the index of the char 'a'. For 1.1.4+svn it is at '+'. + // For 1.1.2a it would at the index of the char 'a'. For 1.1.4+dev it is at '+'. // // For 1.5.2 it is at npos. // diff --git a/src/version.hpp b/src/version.hpp index 532f7305730..5fe237e6f88 100644 --- a/src/version.hpp +++ b/src/version.hpp @@ -58,7 +58,7 @@ public: /** * It is sometimes useful so append special build/distribution - * information to version numbers, in the form of "X.Y.Z+svn", + * information to version numbers, in the form of "X.Y.Z+dev", * "X.Y.Za", etcetera. This member function retrieves such if * available. */ diff --git a/src/wesconfig.h b/src/wesconfig.h index 55213c5ac6f..28d047f5313 100644 --- a/src/wesconfig.h +++ b/src/wesconfig.h @@ -23,7 +23,7 @@ #ifdef VERSION #undef VERSION #endif -#define VERSION "1.11.2+svn" +#define VERSION "1.11.2+dev" #ifndef PACKAGE #define PACKAGE "wesnoth" #endif diff --git a/utils/ai_test/ai_test.py b/utils/ai_test/ai_test.py index 1fbe2ac5f55..71c5cf64a6a 100755 --- a/utils/ai_test/ai_test.py +++ b/utils/ai_test/ai_test.py @@ -18,7 +18,7 @@ class GameResult: is_success = 'false' local_modifications = 'false' map = '' - svn_release = '0' + repo_release = '0' test = 'default' end_turn = '0' version_string = '' @@ -84,8 +84,8 @@ def run_game(cfg,game_result): if (n3>-1): sz = sz[:n3] game_result.local_modifications = 1 - #parse svn_release - game_result.svn_release = sz + #parse repo_release + game_result.repo_release = sz continue n,s = do_filter(str,'info ai/testing: GAME_END_TURN:') @@ -131,7 +131,7 @@ def run_game(cfg,game_result): def save_result(cfg,game_result): print 'Saving to DB....' - query = 'insert into game(ai_config1,ai_config2,ai_ident1,ai_ident2,duration,faction1,faction2,is_success,local_modifications,map,svn_release,test,end_turn,version_string,winner_side) values (%s,%s,%s,%s,cast(%s as double precision),%s,%s,cast(%s as boolean),cast(%s as boolean),%s,cast(%s as int),%s,cast(%s as int),%s,cast(%s as int))' + query = 'insert into game(ai_config1,ai_config2,ai_ident1,ai_ident2,duration,faction1,faction2,is_success,local_modifications,map,repo_release,test,end_turn,version_string,winner_side) values (%s,%s,%s,%s,cast(%s as double precision),%s,%s,cast(%s as boolean),cast(%s as boolean),%s,cast(%s as int),%s,cast(%s as int),%s,cast(%s as int))' db_ip = cfg.get('default','db_ip') db_port = cfg.getint('default','db_port') db_name = cfg.get('default','db_name') @@ -140,7 +140,7 @@ def save_result(cfg,game_result): dbconnection = PgSQL.connect(database=db_name,host=db_ip,port=db_port,user=db_user,password=db_pass) cu = dbconnection.cursor() - cu.execute(query, game_result.ai_config1, game_result.ai_config2, game_result.ai_ident1, game_result.ai_ident2, game_result.duration, game_result.faction1, game_result.faction2, game_result.is_success, game_result.local_modifications, game_result.map, game_result.svn_release, game_result.test, game_result.end_turn, game_result.version_string, game_result.winner_side) + cu.execute(query, game_result.ai_config1, game_result.ai_config2, game_result.ai_ident1, game_result.ai_ident2, game_result.duration, game_result.faction1, game_result.faction2, game_result.is_success, game_result.local_modifications, game_result.map, game_result.repo_release, game_result.test, game_result.end_turn, game_result.version_string, game_result.winner_side) cu.execute('commit') dbconnection.close() print 'Saved to DB' diff --git a/utils/ai_test/ai_test2.py b/utils/ai_test/ai_test2.py index ac76261c7ca..7433cee84ed 100755 --- a/utils/ai_test/ai_test2.py +++ b/utils/ai_test/ai_test2.py @@ -18,7 +18,7 @@ class GameResult: is_success = 'false' local_modifications = 'false' map = '' - svn_release = '0' + repo_release = '0' test = 'default' end_turn = '0' version_string = '' @@ -84,8 +84,8 @@ def run_game(cfg,game_result): if (n3>-1): sz = sz[:n3] game_result.local_modifications = 1 - #parse svn_release - game_result.svn_release = sz + #parse repo_release + game_result.repo_release = sz continue n,s = do_filter(str,'info ai/testing: GAME_END_TURN:') @@ -132,7 +132,7 @@ def run_game(cfg,game_result): def save_result(cfg,log_file,game_result): print 'Saving to log file....' print 'game duration: '+str(game_result.duration); - log_file.write('"'+game_result.ai_config1+'", "'+game_result.ai_config2+'", "'+game_result.ai_ident1+'", "'+game_result.ai_ident2+'", "'+ str(game_result.duration)+'", "'+game_result.faction1+'", "'+game_result.faction2+'", "'+str(game_result.is_success)+'", "'+str(game_result.local_modifications)+'", "'+game_result.map+'", "'+str(game_result.svn_release)+'", "'+str(game_result.test)+'", "'+str(game_result.end_turn)+'", "'+str(game_result.version_string)+'", "'+str(game_result.winner_side)+'"\n'); + log_file.write('"'+game_result.ai_config1+'", "'+game_result.ai_config2+'", "'+game_result.ai_ident1+'", "'+game_result.ai_ident2+'", "'+ str(game_result.duration)+'", "'+game_result.faction1+'", "'+game_result.faction2+'", "'+str(game_result.is_success)+'", "'+str(game_result.local_modifications)+'", "'+game_result.map+'", "'+str(game_result.repo_release)+'", "'+str(game_result.test)+'", "'+str(game_result.end_turn)+'", "'+str(game_result.version_string)+'", "'+str(game_result.winner_side)+'"\n'); log_file.flush(); print 'Saved to log file' @@ -171,7 +171,7 @@ cfg = ConfigParser.ConfigParser() cfg.read('ai_test.cfg') log_file = open(datetime.now().strftime(cfg.get('default','log_file').strip()) , 'w') -log_file.write('"ai_config1"'+', '+'"ai_config2"'+', '+'"ai_ident1"'+', '+'"ai_ident2"'+', '+ '"duration"'+', '+'"faction1"'+', '+'"faction2"'+', '+'"is_success"'+', '+'"local_modifications"'+', '+'"map"'+', '+'"svn_release"'+', '+'"test"'+', '+'"end_turn"'+', '+'"version_string"'+', '+'"winner_side"'+'\n'); +log_file.write('"ai_config1"'+', '+'"ai_config2"'+', '+'"ai_ident1"'+', '+'"ai_ident2"'+', '+ '"duration"'+', '+'"faction1"'+', '+'"faction2"'+', '+'"is_success"'+', '+'"local_modifications"'+', '+'"map"'+', '+'"repo_release"'+', '+'"test"'+', '+'"end_turn"'+', '+'"version_string"'+', '+'"winner_side"'+'\n'); log_file.flush(); for test in tests(cfg): game_result = run_game(cfg,test) diff --git a/utils/ai_test/ai_test_db.backup b/utils/ai_test/ai_test_db.backup index 79f22ebb9df..9ed41dda5b0 100644 --- a/utils/ai_test/ai_test_db.backup +++ b/utils/ai_test/ai_test_db.backup @@ -3,6 +3,7 @@ -- -- Started on 2009-04-28 03:24:33 EEST +-- In March 2013, svn_release -> repo_release SET client_encoding = 'UTF8'; SET standard_conforming_strings = off; @@ -34,7 +35,7 @@ SET default_with_oids = false; CREATE TABLE game ( id bigint NOT NULL, - svn_release integer DEFAULT 0 NOT NULL, + repo_release integer DEFAULT 0 NOT NULL, datetime timestamp with time zone DEFAULT now() NOT NULL, winner_side integer DEFAULT 0 NOT NULL, ai_config1 text DEFAULT ''::text NOT NULL, @@ -63,7 +64,7 @@ ALTER TABLE public.game OWNER TO wesnoth_ai_test_user; -- CREATE VIEW games_side AS - SELECT game.id, game.svn_release, game.datetime, game.duration, game.map, 1 AS my_side, CASE WHEN (game.winner_side = 1) THEN 1 WHEN (game.winner_side = 2) THEN -1 ELSE 0 END AS outcome, CASE WHEN (game.winner_side = 1) THEN 1 ELSE 0 END AS win, CASE WHEN (game.winner_side = 0) THEN 1 ELSE 0 END AS draw, CASE WHEN (game.winner_side = 2) THEN 1 ELSE 0 END AS loss, CASE WHEN (game.winner_side = 1) THEN game.turn ELSE 0 END AS win_turns, CASE WHEN (game.winner_side = 2) THEN game.turn ELSE 0 END AS loss_turns, game.is_success, game.version_string, game.ai_config1 AS ai_config_me, game.ai_config2 AS ai_config_enemy, game.ai_ident1 AS ai_ident_me, game.ai_ident2 AS ai_ident_enemy, game.local_modifications, game.turn, game.faction1 AS faction_me, game.faction2 AS faction_enemy FROM game WHERE (game.svn_release <> 0) UNION SELECT game.id, game.svn_release, game.datetime, game.duration, game.map, 2 AS my_side, CASE WHEN (game.winner_side = 1) THEN -1 WHEN (game.winner_side = 2) THEN 1 ELSE 0 END AS outcome, CASE WHEN (game.winner_side = 2) THEN 1 ELSE 0 END AS win, CASE WHEN (game.winner_side = 0) THEN 1 ELSE 0 END AS draw, CASE WHEN (game.winner_side = 1) THEN 1 ELSE 0 END AS loss, CASE WHEN (game.winner_side = 2) THEN game.turn ELSE 0 END AS win_turns, CASE WHEN (game.winner_side = 1) THEN game.turn ELSE 0 END AS loss_turns, game.is_success, game.version_string, game.ai_config2 AS ai_config_me, game.ai_config1 AS ai_config_enemy, game.ai_ident2 AS ai_ident_me, game.ai_ident1 AS ai_ident_enemy, game.local_modifications, game.turn, game.faction1 AS faction_me, game.faction2 AS faction_enemy FROM game WHERE (game.svn_release <> 0); + SELECT game.id, game.repo_release, game.datetime, game.duration, game.map, 1 AS my_side, CASE WHEN (game.winner_side = 1) THEN 1 WHEN (game.winner_side = 2) THEN -1 ELSE 0 END AS outcome, CASE WHEN (game.winner_side = 1) THEN 1 ELSE 0 END AS win, CASE WHEN (game.winner_side = 0) THEN 1 ELSE 0 END AS draw, CASE WHEN (game.winner_side = 2) THEN 1 ELSE 0 END AS loss, CASE WHEN (game.winner_side = 1) THEN game.turn ELSE 0 END AS win_turns, CASE WHEN (game.winner_side = 2) THEN game.turn ELSE 0 END AS loss_turns, game.is_success, game.version_string, game.ai_config1 AS ai_config_me, game.ai_config2 AS ai_config_enemy, game.ai_ident1 AS ai_ident_me, game.ai_ident2 AS ai_ident_enemy, game.local_modifications, game.turn, game.faction1 AS faction_me, game.faction2 AS faction_enemy FROM game WHERE (game.repo_release <> 0) UNION SELECT game.id, game.repo_release, game.datetime, game.duration, game.map, 2 AS my_side, CASE WHEN (game.winner_side = 1) THEN -1 WHEN (game.winner_side = 2) THEN 1 ELSE 0 END AS outcome, CASE WHEN (game.winner_side = 2) THEN 1 ELSE 0 END AS win, CASE WHEN (game.winner_side = 0) THEN 1 ELSE 0 END AS draw, CASE WHEN (game.winner_side = 1) THEN 1 ELSE 0 END AS loss, CASE WHEN (game.winner_side = 2) THEN game.turn ELSE 0 END AS win_turns, CASE WHEN (game.winner_side = 1) THEN game.turn ELSE 0 END AS loss_turns, game.is_success, game.version_string, game.ai_config2 AS ai_config_me, game.ai_config1 AS ai_config_enemy, game.ai_ident2 AS ai_ident_me, game.ai_ident1 AS ai_ident_enemy, game.local_modifications, game.turn, game.faction1 AS faction_me, game.faction2 AS faction_enemy FROM game WHERE (game.repo_release <> 0); ALTER TABLE public.games_side OWNER TO wesnoth_ai_test_user; diff --git a/utils/ai_test/wesnoth_ai_test.php b/utils/ai_test/wesnoth_ai_test.php index 06ba15a8bdb..01d66a60e62 100755 --- a/utils/ai_test/wesnoth_ai_test.php +++ b/utils/ai_test/wesnoth_ai_test.php @@ -12,9 +12,9 @@ # print("Connection Ok!"); } ?> -

Latest svn AI wins % graph:

+

Latest repository AI wins % graph:

AI -SVN Release +Repository_Revision Win % Games Wins @@ -50,7 +50,7 @@ printf("Avg. turns to lose %s%d%.1f%d%d%d%.1f%.1f", - $myrow['ai_ident_me'],$myrow['svn_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); + $myrow['ai_ident_me'],$myrow['repo_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); } ?> @@ -68,7 +68,7 @@ while($myrow = pg_fetch_assoc($result)) { AI Side -SVN Release +Repository_Revision Win % Games Wins @@ -77,7 +77,7 @@ while($myrow = pg_fetch_assoc($result)) { Avg. turns to lose %s%s%d%.1f%d%d%d%.1f%.1f", - $myrow['ai_ident_me'],$myrow['my_side'],$myrow['svn_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); + $myrow['ai_ident_me'],$myrow['my_side'],$myrow['repo_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); } ?> @@ -95,7 +95,7 @@ while($myrow = pg_fetch_assoc($result)) { AI Map -SVN Release +Repository_Revision Win % Games Wins @@ -104,7 +104,7 @@ while($myrow = pg_fetch_assoc($result)) { Avg. turns to lose %s%s%d%.1f%d%d%d%.1f%.1f", - $myrow['ai_ident_me'],$myrow['map'],$myrow['svn_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); + $myrow['ai_ident_me'],$myrow['map'],$myrow['repo_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); } ?> @@ -122,7 +122,7 @@ while($myrow = pg_fetch_assoc($result)) { AI Own faction -SVN Release +Repository_Revision Win % Games Wins @@ -131,7 +131,7 @@ while($myrow = pg_fetch_assoc($result)) { Avg. turns to lose %s%s%d%.1f%d%d%d%.1f%.1f", - $myrow['ai_ident_me'],$myrow['faction_me'],$myrow['svn_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); + $myrow['ai_ident_me'],$myrow['faction_me'],$myrow['repo_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); } ?> @@ -149,7 +149,7 @@ while($myrow = pg_fetch_assoc($result)) { AI Enemy faction -SVN Release +Repository_Revision Win % Games Wins @@ -158,7 +158,7 @@ while($myrow = pg_fetch_assoc($result)) { Avg. turns to lose %s%s%d%.1f%d%d%d%.1f%.1f", - $myrow['ai_ident_me'],$myrow['faction_enemy'],$myrow['svn_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); + $myrow['ai_ident_me'],$myrow['faction_enemy'],$myrow['repo_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); } ?> @@ -177,7 +177,7 @@ while($myrow = pg_fetch_assoc($result)) { AI Own faction Enemy faction -SVN Release +Repository_Revision Win % Games Wins @@ -186,7 +186,7 @@ while($myrow = pg_fetch_assoc($result)) { Avg. turns to lose %s%s%s%d%.1f%d%d%d%.1f%.1f", - $myrow['ai_ident_me'],$myrow['faction_me'],$myrow['faction_enemy'],$myrow['svn_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); + $myrow['ai_ident_me'],$myrow['faction_me'],$myrow['faction_enemy'],$myrow['repo_release'],$myrow['win_percent'],$myrow['games'],$myrow['wins'],$myrow['losses'],$myrow['avg_win_turns'],$myrow['avg_loss_turns']); } ?> diff --git a/utils/change_textdomain b/utils/change_textdomain index a9a33ffb92b..f5375ea5897 100755 --- a/utils/change_textdomain +++ b/utils/change_textdomain @@ -37,12 +37,12 @@ # [/textdomain] # # 3) move the folder po/wesnoth-oldtextdomain to -# po/wesnoth-newtextdomain (svn mv if the file is already under -# version conrol, normal mv if it is not) +# po/wesnoth-newtextdomain (git mv if the file is already under +# version control, normal mv if it is not) # # 4) move the file (folders are already changed) # po/wesnoth-newtextdomain/wesnoth-oldtextdomain.pot to -# po/wesnoth-newtextdomain/wensoth-newtextdomain.pot (via svn mv if +# po/wesnoth-newtextdomain/wensoth-newtextdomain.pot (via git mv if # files are under version control already, --force will be needed, # since it is a 2nd move) # @@ -118,10 +118,10 @@ overwrite() rm -f $new $old } -svnmove() +repomove() # Move a file, whether under version control or not { - if svn mv --force $1 $2 + if git mv $1 $2 then : else @@ -196,6 +196,6 @@ else `find data/campaigns/${campaign} -name "*.cfg" -print` # Then do the .pot and folder moves - ${do} svnmove po/${oldtextdomain}/${oldtextdomain}.pot po/${oldtextdomain}/${newtextdomain}.pot - ${do} svnmove po/${oldtextdomain} po/${newtextdomain} + ${do} repomove po/${oldtextdomain}/${oldtextdomain}.pot po/${oldtextdomain}/${newtextdomain}.pot + ${do} repomove po/${oldtextdomain} po/${newtextdomain} fi diff --git a/utils/generate_git_tags.sh b/utils/generate_git_tags.sh deleted file mode 100644 index 486d1095df4..00000000000 --- a/utils/generate_git_tags.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -for i in `git branch -r -l|grep tags|sed 's#.*tags/##'`;do git tag $i tags/$i -m "SVN tag $i";done - diff --git a/utils/mp-server/run_server b/utils/mp-server/run_server index e21a5016d1b..c227ebee95a 100755 --- a/utils/mp-server/run_server +++ b/utils/mp-server/run_server @@ -55,7 +55,7 @@ do DATE=$(date +"%Y%m%d-%H%M%S") [ -r "$SERVERBASE"/redirect.cfg ] && PORT=$(sed -nre '/port=/s/[ \t]*port="?([0-9]+)"?/\1/p' "$SERVERBASE"/redirect.cfg) BUILDDIR=$(readlink "$SERVERBASE"/build) - REV=r$(echo $BUILDDIR | sed -nre "s,.*wesnothd-svn-([0-9:SM]+)_$SERVER$,\1,p") + REV=r$(echo $BUILDDIR | sed -nre "s,.*wesnothd-dev-([0-9:SM]+)_$SERVER$,\1,p") LOG="wesnothd.$DATE.$REV.log" bin/wesnothd-$SERVER -c "$SERVERBASE"/wesnothd.cfg --port $PORT --threads $THREADS $PARAMETERS > "$SERVERBASE/logs/$LOG" 2>&1 & PID=$! diff --git a/utils/mp-server/update_server b/utils/mp-server/update_server index a16f8886115..83e52323894 100755 --- a/utils/mp-server/update_server +++ b/utils/mp-server/update_server @@ -1,4 +1,6 @@ #!/bin/sh +# FIXME-GIT: this file will need to be updated + die() { echo >&2 "$@"; exit 1; } [ $# -gt 0 ] && [ $# -lt 4 ] || die "Syntax: $(basename $0) [-c] []" set -o errexit diff --git a/utils/pofix.py b/utils/pofix.py index 988c8bdb39b..636da9c7ef8 100755 --- a/utils/pofix.py +++ b/utils/pofix.py @@ -36,9 +36,9 @@ # that states when it was added (current version number is enough) so that # the file can be cleaned up more easily every now and then. # Example: -# # conversion added in 1.9.5+svn +# # conversion added in 1.9.5+dev # ("foo addwd bar", "foo added bar"), -# # conversion added in 1.9.8+svn +# # conversion added in 1.9.8+dev # ("fooba foo", "foobar foo"), # # NOTE: @@ -53,12 +53,12 @@ stringfixes = { ), "wesnoth-httt" : ( -# fix added in 1.10.0+svn +# fix added in 1.10.0+dev ("Second, who you most", "Second, whom you most"), ), "wesnoth-tutorial" : ( -# conversion added in 1.11.0-svn +# conversion added in 1.11.0-dev ("$unit.type", "$unit.language_name"), ), diff --git a/utils/test_libsvn.py b/utils/test_libsvn.py deleted file mode 100755 index 45f4846e27b..00000000000 --- a/utils/test_libsvn.py +++ /dev/null @@ -1,188 +0,0 @@ -#!/usr/bin/env python -# vim: tabstop=4: shiftwidth=4: expandtab: softtabstop=4: autoindent: -# $Id$ -""" - Copyright (C) 2007 by Mark de Wever - Part of the Battle for Wesnoth Project http://www.wesnoth.org/ - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY. - - See the COPYING file for more details. - - -This module is meant to test the libsvn.py library. -""" - -import sys, os.path, optparse -# in case the wesnoth python package has not been installed -sys.path.append("data/tools") -import wesnoth.libsvn as libsvn - - -def evaluate(res): - """ - Evaluates the result send from the library. - """ - if options.verbose: - print "Status:", res.status - print res.out - if res.status == -1: - print "Error: " + res.err - -# The main program. - -if __name__ == "__main__": - - optionparser = optparse.OptionParser("%prog [options] path") - - # -o file:///home/mark/addond/repo /tmp/checkout - optionparser.add_option("-o", "--checkout", help="checkout a repo") # V - - # -u /tmp/checkout - optionparser.add_option("-u", "--update", help="update a local copy", - action="store_true") # V - - # -u --rev=1 /tmp/checkout - optionparser.add_option("--rev", help="update to a certain revision") # V - - # -c "foo bar" /tmp/checkout/ - optionparser.add_option("-c", "--commit", help="commits a change") # V - - # NOTE the checkout is overkill maybe not make it mandatory after all - # -a /tmp/checkout/bar /tmp/checkout - optionparser.add_option("-a", "--add", help="add a file / directory") # V - - # NOTE the checkout is overkill maybe not make it mandatory after all - # -a /tmp/checkout/bar /tmp/checkout - optionparser.add_option("-r", "--remove", help="remove a file / directory") # V - - optionparser.add_option("-s", "--sync", help= - "syncs the local checkout with a separate directory, requires PATH") # \ - - # just add a v to a command - optionparser.add_option("-v", "--verbose", help="show verbose output", - action="store_true") # V - - optionparser.add_option("-f", "--files", help= - "do action only for selected files (only in combination with update/checkout)") - - optionparser.add_option("-e", "--exclude", help= - "exclude selected files (only in combination with sync)") - - optionparser.add_option("-t", "--stat", help="gives the status of a file") - - options, args = optionparser.parse_args() - if len(args) != 1: - optionparser.error("incorrect number of arguments") - - svn = libsvn.SVN(args[0]) - -### checkout - if options.checkout != None: - - # print debug info - if options.verbose: - print "checkout %s to %s" % (options.checkout, args[0]) - - # fire command - res = svn.checkout(options.checkout) - - # evaluate result - evaluate(res) - -### update - elif options.update: - - # print debug info - if options.verbose: - msg = "update " + args[0] - if options.rev != None: - msg += " to rev " + options.rev - - print msg - - # fire command - res = svn.update(options.rev) - - # evaluate result - evaluate(res) - -### add - elif options.add != None: - - # print debug info - if options.verbose: - print "add %s to %s" % (options.add, args[0]) - - # fire command - res = svn.add(options.add) - - # evaluate result - evaluate(res) - -### remove - elif options.remove != None: - - # print debug info - if options.verbose: - print "remove %s from %s" % (options.remove, args[0]) - - # fire command - res = svn.remove(options.remove) - - # evaluate result - evaluate(res) - -### commit - elif options.commit != None: - - # print debug info - if options.verbose: - print "commit %s message: %s" % (args[0], options.commit) - - # fire command - res = svn.commit(options.commit) - - # evaluate result - evaluate(res) - -### sync - elif options.sync != None: - - # print debug info - if options.verbose: - print "sync %s path %s" % (args[0], options.sync) - - # do some sanity checks - if not os.path.isdir(args[0]): - print "repo not found " + args[0] - sys.exit() - - if not os.path.isdir(options.sync): - print "path not found " + options.sync - sys.exit() - - # fire command - res = svn.sync(options.sync) - - # evaluate result - evaluate(res) - -### status - elif options.stat != None: - - # print debug info - if options.verbose: - print "status %s of %s" % (options.stat, args[0]) - - # fire command - res = svn.status(options.stat) - - # evaluate result - evaluate(res) - - else: - optionparser.print_help() diff --git a/utils/umc_dev/manual/dev_manual.tex b/utils/umc_dev/manual/dev_manual.tex index 869cde426cf..cee391eddff 100644 --- a/utils/umc_dev/manual/dev_manual.tex +++ b/utils/umc_dev/manual/dev_manual.tex @@ -81,7 +81,8 @@ After you got all the prerequisites, you need to setup the eclipse installation. \item In the list populated with items, select from the ``Modelling" category: ``Xtext SDK", and install it. Restart eclipse after that. -\item For the plugin's source, checkout the folder ``umc\_dev" from the following SVN url: http://svn.gna.org/svn/wesnoth/trunk/utils/. +\item For the plugin's source, checkout the folder ``umc\_dev" from + the Battle for Wesnoth repository. \item In Eclipse, right click in \textbf{Package Explorer/Navigator} and then select \textbf{Import - General - Existing projects into Workspace} @@ -175,7 +176,7 @@ The plugin can be built as a zip archive (usually) for different operating syste \item If you want to build the plugin using the scripts, do the following: \begin{enumerate} - \item Go to the ``build" directory in the checked-out directory from the SVN. + \item Go to the ``build" directory in the repository checkout. \item The build is done via Scons. \item When launching the build first time you need to specify the ``eclipsedir" argument that specifies the path to a valid Eclipse + deltapack installation. The file you have previously downloaded contains this. \item You can invoke the build like: \textit{scons eclipsedir=/path/to/eclipsedir}. After the first run, the path is cached and you won't need to specify it anymore. diff --git a/utils/wescamp_import b/utils/wescamp_import index 9273294bfe0..032e4d0a004 100755 --- a/utils/wescamp_import +++ b/utils/wescamp_import @@ -2,7 +2,7 @@ # # wescamp_import -- generate a shellscript to import a campaign from WesCamp # -# Pipe the output of this comman to sh to actually perform the opetation +# Pipe the output of this command to sh to actually perform the operation # import sys, os, getopt, shutil @@ -135,9 +135,9 @@ po/%(textdomain)s/Makefile.in wq EOF -svn add po/%(textdomain)s +git add po/%(textdomain)s # To be able to review the commit before actually doing it # recommended commit-msg: Wescamp import -svn commit configure.ac po/Makefile.am po/%(textdomain)s +git commit configure.ac po/Makefile.am po/%(textdomain)s """ % locals() diff --git a/website/gettext.wesnoth.org/bin/update-gettext-stats b/website/gettext.wesnoth.org/bin/update-gettext-stats index 9a34a20e168..d95d3807889 100755 --- a/website/gettext.wesnoth.org/bin/update-gettext-stats +++ b/website/gettext.wesnoth.org/bin/update-gettext-stats @@ -1,33 +1,35 @@ #!/bin/bash -SVNCHECKOUTPATH=/usr/src/svn-checkouts/ +# FIXME-GIT: This needs to be updated to work with the git repo + +CHECKOUTPATH=/usr/src/checkouts/ echo update started at `date` >> $HOME/g.w.o-updates.log #update the 1.10 checkout -cd $SVNCHECKOUTPATH/1.10/ +cd $CHECKOUTPATH/1.10/ #svn cleanup svn -q up #update the trunk checkout -cd $SVNCHECKOUTPATH/trunk/ +cd $CHECKOUTPATH/trunk/ #svn cleanup svn -q up #update the wescamp checkout -cd $SVNCHECKOUTPATH/trunk/ +cd $CHECKOUTPATH/trunk/ echo "starting wescamp.py for 1.10 at `date`" >> $HOME/g.w.o-updates.log -./data/tools/wesnoth/wescamp.py -scampaigns.wesnoth.org -p15002 -w$SVNCHECKOUTPATH/wescamp-i18n/branch-1.10 -C >> $HOME/g.w.o-updates.log +./data/tools/wesnoth/wescamp.py -scampaigns.wesnoth.org -p15002 -w$CHECKOUTPATH/wescamp-i18n/branch-1.10 -C >> $HOME/g.w.o-updates.log echo "wescamp.py 1.10 exited with exit code $? at `date`" >> $HOME/g.w.o-updates.log echo "starting wescamp.py for 1.12 at `date`" >> $HOME/g.w.o-updates.log -./data/tools/wesnoth/wescamp.py -scampaigns.wesnoth.org -p15006 -w$SVNCHECKOUTPATH/wescamp-i18n/branch-1.12 -C >> $HOME/g.w.o-updates.log +./data/tools/wesnoth/wescamp.py -scampaigns.wesnoth.org -p15006 -w$CHECKOUTPATH/wescamp-i18n/branch-1.12 -C >> $HOME/g.w.o-updates.log echo "wescamp.py 1.12 exited with exit code $? at `date`" >> $HOME/g.w.o-updates.log #update the website checkout -cd $SVNCHECKOUTPATH/website/ +cd $CHECKOUTPATH/website/ svn -q up #update the stats -cd $SVNCHECKOUTPATH/website/gettext.wesnoth.org +cd $CHECKOUTPATH/website/gettext.wesnoth.org echo "starting grab-stats at `date`" >> $HOME/g.w.o-updates.log nice --adjustment=5 php grab-stats.php echo "grab-stats exited with exit code $? at `date`" >> $HOME/g.w.o-updates.log diff --git a/website/gettext.wesnoth.org/config.php b/website/gettext.wesnoth.org/config.php index f1fffeb0304..64bb69f13da 100644 --- a/website/gettext.wesnoth.org/config.php +++ b/website/gettext.wesnoth.org/config.php @@ -14,6 +14,7 @@ $branch="1.10"; //version of current stable (folder name of the checkout folder) $wescampbranchversion="1.10"; $wescamptrunkversion="1.12"; +//FIXME-GIT: this will need to be updated $trunkbasedir="/usr/src/svn-checkouts/trunk/"; $branchbasedir="/usr/src/svn-checkouts/$branch/"; $extratbasedir="/usr/src/svn-checkouts/wescamp-i18n/branch-$wescamptrunkversion/"; //trunk addon server diff --git a/website/gettext.wesnoth.org/index.extra.php b/website/gettext.wesnoth.org/index.extra.php index 8322ddcc01a..09529e9a20e 100644 --- a/website/gettext.wesnoth.org/index.extra.php +++ b/website/gettext.wesnoth.org/index.extra.php @@ -269,6 +269,7 @@ foreach($stats as $lang => $stat){ if ($package=='alloff' || $package=='allun' || $package=='all' || $package=='allcore'){ echo "" . $langs[$lang] . " (" . $lang . ")"; }else{ + if($official){ $repo = ($version == 'trunk') ? 'trunk' : "branches/$branch"; echo "" . $langs[$lang] . " (" .$lang . ")"; diff --git a/website/gettext.wesnoth.org/index.lang.php b/website/gettext.wesnoth.org/index.lang.php index a3d8073eb18..71b7c519769 100755 --- a/website/gettext.wesnoth.org/index.lang.php +++ b/website/gettext.wesnoth.org/index.lang.php @@ -205,6 +205,7 @@ foreach($stats as $stat){ ?> + $stat){ if ($package=='alloff' || $package=='allun' || $package=='all' || $package=='allcore'){ echo "" . $langs[$lang] . " (" . $lang . ")"; }else{ + if($official){ $repo = ($version == 'trunk') ? 'trunk' : "branches/$branch"; echo "" . $langs[$lang] . " (" .$lang . ")"; diff --git a/website/stats.wesnoth.org/ez_setup/README.txt b/website/stats.wesnoth.org/ez_setup/README.txt index 77c986da83a..1409a32ce27 100644 --- a/website/stats.wesnoth.org/ez_setup/README.txt +++ b/website/stats.wesnoth.org/ez_setup/README.txt @@ -1,3 +1,5 @@ +FIXME-GIT: this file will need to be updated + This directory exists so that Subversion-based projects can share a single copy of the ``ez_setup`` bootstrap module for ``setuptools``, and have it automatically updated in their projects when ``setuptools`` is updated. diff --git a/website/stats.wesnoth.org/setup.cfg b/website/stats.wesnoth.org/setup.cfg index e16178ec7d4..e9acfc4bcf4 100644 --- a/website/stats.wesnoth.org/setup.cfg +++ b/website/stats.wesnoth.org/setup.cfg @@ -1,6 +1,6 @@ [egg_info] tag_build = dev -tag_svn_revision = true +tag_repo_revision = true [easy_install] find_links = http://www.pylonshq.com/download/ diff --git a/website/tests.wesnoth.org/INSTALL b/website/tests.wesnoth.org/INSTALL index 63384903592..34728be5cb7 100644 --- a/website/tests.wesnoth.org/INSTALL +++ b/website/tests.wesnoth.org/INSTALL @@ -17,13 +17,10 @@ You will need libs required to build wesnoth client. 2. Setting up directories -Go to directory where you want to settup auto unit testing. +Go to directory where you want to setup auto unit testing. -Do a svn checkout from wesnoth trunk. - svn co svn://svn.gna.org/svn/wesnoth/trunk/ trunk - -Export website from svn work directory - svn export trunk/utils/tests tests +Do a checkout from the wesnoth repository and copy files from under +website/ to your test directory. 3. Configuring database diff --git a/website/tests.wesnoth.org/autotester/run_unit_tests.php b/website/tests.wesnoth.org/autotester/run_unit_tests.php index 392c7edd815..b5ffa733481 100644 --- a/website/tests.wesnoth.org/autotester/run_unit_tests.php +++ b/website/tests.wesnoth.org/autotester/run_unit_tests.php @@ -27,20 +27,20 @@ require_once $root_dir . '/../include/settup.php'; $creator = new DBCreator(); $creator->checkDB(); -// do svn up -$svn = new SVNUpdater(); +// get a fresh checkout +$repo = new RepoUpdater(); -if ($svn->getRevision() === false) +if ($repo->getRevision() === false) { - trigger_error("SVN is down", E_USER_ERROR); + trigger_error("Repository is down", E_USER_ERROR); } -$build = new Build($svn->getRevision()); +$build = new Build($repo->getRevision()); if (!$build->Exists()) { - // Only run tests if build doesn't exists - if ($build->compile($svn->getRevision())) + // Only run tests if build doesn't exist + if ($build->compile($repo->getRevision())) { $test_runner = new TestRunner(); $test_runner->run($build); diff --git a/website/tests.wesnoth.org/include/Build.php b/website/tests.wesnoth.org/include/Build.php index 305291382ba..d3e0a0b8784 100644 --- a/website/tests.wesnoth.org/include/Build.php +++ b/website/tests.wesnoth.org/include/Build.php @@ -15,7 +15,7 @@ class Build { private $db; private $id; - private $svn_version; + private $repo_version; private $time; private $status; private $error_msg; @@ -37,7 +37,7 @@ class Build { $this->result = null; $this->errors = null; if ($revision >= 0) - $this->fetch("WHERE svn_version=?", array($revision)); + $this->fetch("WHERE repo_version=?", array($revision)); } private function fetch($where, $params = array()) @@ -110,7 +110,7 @@ class Build { public function reset() { $this->init(array('id' => -1, - 'svn_version' => -1, + 'repo_version' => -1, 'time' => $this->db->DBTimeStamp(0), 'status' => -1, 'error_msg' => "")); @@ -213,7 +213,7 @@ class Build { } $this->time = time(); - $this->svn_revision = $revision; + $this->repo_revision = $revision; if ($this->status == self::S_GOOD) return true; @@ -229,9 +229,9 @@ class Build { public function insert() { $result = $this->db->Execute('INSERT INTO builds - (svn_version, status, error_msg) + (repo_version, status, error_msg) VALUES (?, ?, ?)', - array($this->svn_revision, + array($this->repo_revision, $this->status, $this->error_msg)); @@ -245,7 +245,7 @@ class Build { if ($result->EOF()) { $result = $this->db->Execute('INSERT INTO builds - (svn_version, status, error_msg) + (repo_version, status, error_msg) VALUES (?, ?, ?)', array(0, self::S_GOOD, @@ -328,7 +328,7 @@ class Build { 'id' => $this->id, 'result_style' => $this->result->getResult(), 'error_msg' => $this->error_msg, - 'svn_rev' => $this->svn_version, + 'repo_rev' => $this->repo_version, 'result_passed' => $this->result->getAssertionsPassed(), 'result_failed' => $this->result->getAssertionsFailed()); } diff --git a/website/tests.wesnoth.org/include/DBCreator.php b/website/tests.wesnoth.org/include/DBCreator.php index dfe90727415..99fce9b7ad4 100644 --- a/website/tests.wesnoth.org/include/DBCreator.php +++ b/website/tests.wesnoth.org/include/DBCreator.php @@ -320,13 +320,13 @@ class DBCreator { $buildstable = new DBTable('builds', 'InnoDB'); $buildstable->addChild(new DBField('id', 'INT NOT NULL AUTO_INCREMENT')); - $buildstable->addChild(new DBField('svn_version', 'INT NOT NULL')); + $buildstable->addChild(new DBField('repo_version', 'INT NOT NULL')); $buildstable->addChild(new DBField('time', 'TIMESTAMP NOT NULL', 'CURRENT_TIMESTAMP')); $buildstable->addChild(new DBField('status', 'INT NOT NULL')); $buildstable->addChild(new DBField('error_msg', 'BLOB NOT NULL')); $buildstable->addChild(new DBIndex('`id`', 'PRIMARY KEY')); $buildstable->addChild(new DBIndex('`time`', 'KEY')); - $buildstable->addChild(new DBIndex('`svn_version`', 'KEY')); + $buildstable->addChild(new DBIndex('`repo_version`', 'KEY')); $buildstable->addChild(new DBIndex('`id`,`status`', 'KEY', 'id_status')); $this->format->addChild($buildstable); diff --git a/website/tests.wesnoth.org/include/SVNUpdater.php b/website/tests.wesnoth.org/include/RepoUpdater.php similarity index 73% rename from website/tests.wesnoth.org/include/SVNUpdater.php rename to website/tests.wesnoth.org/include/RepoUpdater.php index de3d874b0a8..53cfc009134 100644 --- a/website/tests.wesnoth.org/include/SVNUpdater.php +++ b/website/tests.wesnoth.org/include/RepoUpdater.php @@ -3,6 +3,8 @@ Copyright (C) 2008 by Pauli Nieminen Part of the Battle for Wesnoth Project http://www.wesnoth.org/ + Adapted for git and name changed in 2013 at git conversion time. + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 or at your option any later version. @@ -13,11 +15,11 @@ */ -class SVNUpdater { +class RepoUpdater { private $revision; function __construct() { - $this->updateSVN(); + $this->updateRepo(); } public function getRevision() @@ -25,23 +27,23 @@ class SVNUpdater { return $this->revision; } - private function updateSVN() + private function updateRepo() { $success = false; $m = array(); $tries = 3; while(!$success && $tries--) { - $svnlog = shell_exec('svn up 2>&1'); + shell_exec('git checkout 2>&1'); + $gitversion = shell_exec('git rev-parse HEAD"); global $db; if ($db->debug) - echo $svnlog; - $success = preg_match('/At revision ([0-9]*)\./m', $svnlog, $m); + echo $gitversion; if (!$success && $tries) sleep(60); } if ($success) - $this->revision = (int)$m[1]; + $this->revision = $gitversion; else $this->revision = false; } diff --git a/website/tests.wesnoth.org/include/TestError.php b/website/tests.wesnoth.org/include/TestError.php index 27a1e84538e..64221a823ff 100644 --- a/website/tests.wesnoth.org/include/TestError.php +++ b/website/tests.wesnoth.org/include/TestError.php @@ -149,7 +149,7 @@ class TestError { { if ($this->start_version == -1) { - $result = $this->db->Execute('SELECT svn_version as start_version FROM builds WHERE id=?',array($this->before_id)); + $result = $this->db->Execute('SELECT repo_version as start_version FROM builds WHERE id=?',array($this->before_id)); $this->start_version = $result->fields['start_version']; } return $this->start_version; @@ -160,7 +160,7 @@ class TestError { if ($this->end_version == -1) { // might need optimization - $result = $this->db->Execute('SELECT MIN(svn_version) as end_version FROM builds WHERE id>? AND status=?',array($this->before_id, Build::S_GOOD)); + $result = $this->db->Execute('SELECT MIN(repo_version) as end_version FROM builds WHERE id>? AND status=?',array($this->before_id, Build::S_GOOD)); $this->end_version = $result->fields['end_version']; } return $this->end_version; diff --git a/website/tests.wesnoth.org/install_tests.sh b/website/tests.wesnoth.org/install_tests.sh index c3952fc9924..b5f6cbcab6e 100755 --- a/website/tests.wesnoth.org/install_tests.sh +++ b/website/tests.wesnoth.org/install_tests.sh @@ -6,6 +6,7 @@ then fi INSTALL_DIR=$1 +#FIXME-GIT: This needs to be updated svn export svn://svn.gna.org/svn/wesnoth/branches/resources/tests.wesnoth.org/ $INSTALL_DIR cd $INSTALL_DIR diff --git a/website/tests.wesnoth.org/smarty_workdir/templates/build_list.tpl b/website/tests.wesnoth.org/smarty_workdir/templates/build_list.tpl index a7cc29a5193..4163b53e249 100644 --- a/website/tests.wesnoth.org/smarty_workdir/templates/build_list.tpl +++ b/website/tests.wesnoth.org/smarty_workdir/templates/build_list.tpl @@ -32,7 +32,7 @@ {/if} -r{$build.svn_rev} +r{$build.repo_rev} {$build.result|autohide:20:true} {$build.result_passed}/{$build.result_passed+$build.result_failed} diff --git a/website/tests.wesnoth.org/sql/dump.sql b/website/tests.wesnoth.org/sql/dump.sql index 090315bf9f9..200c588b886 100644 --- a/website/tests.wesnoth.org/sql/dump.sql +++ b/website/tests.wesnoth.org/sql/dump.sql @@ -24,13 +24,13 @@ SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `builds` ( `id` int(11) NOT NULL auto_increment, - `svn_version` int(11) NOT NULL, + `repo_version` int(11) NOT NULL, `time` timestamp NOT NULL default CURRENT_TIMESTAMP, `status` int(11) NOT NULL, `error_msg` blob NOT NULL, PRIMARY KEY (`id`), KEY `time` (`time`), - KEY `svn_version` (`svn_version`), + KEY `repo_version` (`repo_version`), KEY `id_status` (`id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=131 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; @@ -41,7 +41,7 @@ SET character_set_client = @saved_cs_client; LOCK TABLES `builds` WRITE; /*!40000 ALTER TABLE `builds` DISABLE KEYS */; -INSERT INTO `builds` (`id`, `svn_version`, `time`, `status`, `error_msg`) VALUES (0,0,'2008-08-07 21:08:39',0,''),(3,28360,'2008-08-07 21:36:09',1,''),(12,28371,'2008-08-07 23:45:59',1,''),(19,28373,'2008-08-08 09:18:26',0,''),(20,28374,'2008-08-08 13:36:44',1,'errorerrorerror'),(21,28374,'2008-08-08 13:58:09',1,'g++ -o build/debug/tests/test_config_cache.o -c -I/usr/local/include/boost-1_35/ -W -Wall -Wno-unused -Wno-sign-compare -ansi -Werror -O0 -DDEBUG -ggdb3 -DHAVE_CONFIG_H -DUSE_EDITOR2 -D_X11 -DBOOST_TEST_DYN_LINK -I/usr/include/SDL -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/python2.5 -Isrc -I. build/debug/tests/test_config_cache.cpp\n'),(22,28374,'2008-08-08 14:08:04',1,''),(23,28374,'2008-08-08 14:20:28',1,'/home/coren/wesnoth/trunk/build/debug/tests/test_config_cache.cpp:96: undefined reference to `config_cache::test_config_cache::getInt()\'\ncollect2: ld returned 1 exit status\n'),(24,28374,'2008-08-08 14:31:59',1,'/home/coren/wesnoth/trunk/build/debug/tests/test_config_cache.cpp:96: undefined reference to `config_cache::test_config_cache::getInt()\'\ncollect2: ld returned 1 exit status\n'),(25,28375,'2008-08-08 14:58:25',0,''),(26,28374,'2008-08-08 15:08:13',1,'build/debug/tests/test_team.cpp:21: error: ‘aBOOST_WARN_EQUAL’ was not declared in this scope\n'),(27,28375,'2008-08-08 15:24:46',0,''),(32,28396,'2008-08-08 21:02:59',0,''),(36,28399,'2008-08-08 23:54:49',0,''),(44,28417,'2008-08-09 21:18:13',0,''),(45,28420,'2008-08-10 10:19:27',0,''),(46,28422,'2008-08-10 11:19:52',0,''),(47,28424,'2008-08-10 12:17:21',1,'build/debug/scoped_resource.hpp:194: error: ‘fg’ was not declared in this scope\nbuild/debug/scoped_resource.hpp:194: error: ‘close’ was not declared in this scope\n'),(48,28426,'2008-08-10 13:22:33',1,'build/debug/network_worker.cpp:460: error: no matching function for call to ‘::cork_setter::cork_setter()’\nbuild/debug/network_worker.cpp:425: note: candidates are: ::cork_setter::cork_setter(int)\nbuild/debug/network_worker.cpp:424: note: ::cork_setter::cork_setter(const::cork_setter&)\nbuild/debug/network_worker.cpp:494: error: no match for ‘operator*’ in ‘*in_file’\n'),(49,28427,'2008-08-10 13:38:40',1,'network_worker.cpp:494: error: no match for ‘operator*’ in ‘*in_file’\n'),(50,28437,'2008-08-10 15:20:07',0,''),(52,28446,'2008-08-10 18:18:54',0,''),(53,28447,'2008-08-10 19:18:48',0,''),(54,28453,'2008-08-10 22:27:19',1,'playcampaign.cpp:133: error: no matching function for call to ‘playsingle_controller::playsingle_controller(const config&, game_state&, const int&, const int&, const config&, CVideo&, bool&)’\nplaysingle_controller.hpp:33: note: candidates are: playsingle_controller::playsingle_controller(config&, game_state&, int, int, const config&, CVideo&, bool)\nplaysingle_controller.hpp:30: note: playsingle_controller::playsingle_controller(const playsingle_controller&)\n'),(56,28453,'2008-08-11 00:47:48',0,''),(62,28464,'2008-08-11 16:24:23',0,''),(63,28465,'2008-08-11 17:18:38',1,'editor_controller.cpp:353: error: invalid operands of types ‘const char [2]’ and ‘const char* const’ to binary ‘operator+’\n'),(64,28466,'2008-08-11 17:33:23',1,'build/debug/editor2/editor_controller.cpp:353: error: invalid operands of types ‘const char [2]’ and ‘const char* const’ to binary ‘operator+’\n'),(66,28470,'2008-08-11 18:03:18',0,''),(67,28475,'2008-08-11 21:57:07',0,''),(101,28698,'2008-08-18 07:23:03',0,''),(102,28701,'2008-08-18 12:17:15',0,'campaign_server/campaign_server.cpp:317: warning: comparison is always true due to limited range of data type\n'),(104,28706,'2008-08-18 14:18:23',0,'campaign_server/campaign_server.cpp:317: warning: comparison is always true due to limited range of data type\n'),(106,28733,'2008-08-18 21:56:00',1,'serialization/parser.cpp:340: error: expected primary-expression before ‘(’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘<<’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘<<’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘<<’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘<’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘.’ token\nserialization/parser.cpp:344: error: expected primary-expression before ‘==’ token\nserialization/parser.cpp:344: error: expected primary-expression before ‘==’ token\nserialization/parser.cpp:344: error: expected primary-expression before ‘==’ token\nserialization/parser.cpp:344: error: expected primary-expression before ‘=’ token\nserialization/parser.cpp:345: error: expected `;\\\' before ‘)’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘>>’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘>>’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘>>’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘>’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘.’ token\nserialization/parser.cpp:352: error: expected `;\\\' before ‘}’ token\n'),(108,28734,'2008-08-18 22:16:59',0,''),(110,28760,'2008-08-19 08:21:58',0,''),(111,28764,'2008-08-19 10:23:32',0,''),(112,28767,'2008-08-19 11:24:07',0,''),(113,28768,'2008-08-19 12:27:13',0,''),(114,28769,'2008-08-19 13:23:12',0,''),(115,28770,'2008-08-19 16:26:38',0,''),(116,28773,'2008-08-19 20:24:51',0,''),(117,28776,'2008-08-19 21:28:19',0,''),(118,28783,'2008-08-20 07:46:12',0,''),(119,28784,'2008-08-20 08:20:36',0,''),(120,28785,'2008-08-20 10:50:12',0,''),(121,28792,'2008-08-20 17:41:46',0,''),(122,28797,'2008-08-20 18:38:27',0,''),(123,28805,'2008-08-20 19:28:14',0,''),(124,28818,'2008-08-21 06:28:56',0,''),(125,28819,'2008-08-21 07:24:16',0,''),(126,28821,'2008-08-21 10:23:40',0,''),(127,28823,'2008-08-21 11:23:03',0,''),(128,28824,'2008-08-21 13:28:56',0,''),(129,28837,'2008-08-22 06:38:06',0,'editor2/mouse_action.hpp:205: warning: ‘editor2::brush_drag_mouse_action::brush_’ will be initialized after\neditor2/mouse_action.hpp:191: warning: ‘gamemap::location editor2::brush_drag_mouse_action::previous_drag_hex_’\neditor2/mouse_action.hpp:133: warning: when initialized here\ndistcc[5584] ERROR: compile build/debug/editor2/editor_controller.cpp on localhost failed\n'),(130,28839,'2008-08-22 08:26:41',0,''); +INSERT INTO `builds` (`id`, `repo_version`, `time`, `status`, `error_msg`) VALUES (0,0,'2008-08-07 21:08:39',0,''),(3,28360,'2008-08-07 21:36:09',1,''),(12,28371,'2008-08-07 23:45:59',1,''),(19,28373,'2008-08-08 09:18:26',0,''),(20,28374,'2008-08-08 13:36:44',1,'errorerrorerror'),(21,28374,'2008-08-08 13:58:09',1,'g++ -o build/debug/tests/test_config_cache.o -c -I/usr/local/include/boost-1_35/ -W -Wall -Wno-unused -Wno-sign-compare -ansi -Werror -O0 -DDEBUG -ggdb3 -DHAVE_CONFIG_H -DUSE_EDITOR2 -D_X11 -DBOOST_TEST_DYN_LINK -I/usr/include/SDL -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/python2.5 -Isrc -I. build/debug/tests/test_config_cache.cpp\n'),(22,28374,'2008-08-08 14:08:04',1,''),(23,28374,'2008-08-08 14:20:28',1,'/home/coren/wesnoth/trunk/build/debug/tests/test_config_cache.cpp:96: undefined reference to `config_cache::test_config_cache::getInt()\'\ncollect2: ld returned 1 exit status\n'),(24,28374,'2008-08-08 14:31:59',1,'/home/coren/wesnoth/trunk/build/debug/tests/test_config_cache.cpp:96: undefined reference to `config_cache::test_config_cache::getInt()\'\ncollect2: ld returned 1 exit status\n'),(25,28375,'2008-08-08 14:58:25',0,''),(26,28374,'2008-08-08 15:08:13',1,'build/debug/tests/test_team.cpp:21: error: ‘aBOOST_WARN_EQUAL’ was not declared in this scope\n'),(27,28375,'2008-08-08 15:24:46',0,''),(32,28396,'2008-08-08 21:02:59',0,''),(36,28399,'2008-08-08 23:54:49',0,''),(44,28417,'2008-08-09 21:18:13',0,''),(45,28420,'2008-08-10 10:19:27',0,''),(46,28422,'2008-08-10 11:19:52',0,''),(47,28424,'2008-08-10 12:17:21',1,'build/debug/scoped_resource.hpp:194: error: ‘fg’ was not declared in this scope\nbuild/debug/scoped_resource.hpp:194: error: ‘close’ was not declared in this scope\n'),(48,28426,'2008-08-10 13:22:33',1,'build/debug/network_worker.cpp:460: error: no matching function for call to ‘::cork_setter::cork_setter()’\nbuild/debug/network_worker.cpp:425: note: candidates are: ::cork_setter::cork_setter(int)\nbuild/debug/network_worker.cpp:424: note: ::cork_setter::cork_setter(const::cork_setter&)\nbuild/debug/network_worker.cpp:494: error: no match for ‘operator*’ in ‘*in_file’\n'),(49,28427,'2008-08-10 13:38:40',1,'network_worker.cpp:494: error: no match for ‘operator*’ in ‘*in_file’\n'),(50,28437,'2008-08-10 15:20:07',0,''),(52,28446,'2008-08-10 18:18:54',0,''),(53,28447,'2008-08-10 19:18:48',0,''),(54,28453,'2008-08-10 22:27:19',1,'playcampaign.cpp:133: error: no matching function for call to ‘playsingle_controller::playsingle_controller(const config&, game_state&, const int&, const int&, const config&, CVideo&, bool&)’\nplaysingle_controller.hpp:33: note: candidates are: playsingle_controller::playsingle_controller(config&, game_state&, int, int, const config&, CVideo&, bool)\nplaysingle_controller.hpp:30: note: playsingle_controller::playsingle_controller(const playsingle_controller&)\n'),(56,28453,'2008-08-11 00:47:48',0,''),(62,28464,'2008-08-11 16:24:23',0,''),(63,28465,'2008-08-11 17:18:38',1,'editor_controller.cpp:353: error: invalid operands of types ‘const char [2]’ and ‘const char* const’ to binary ‘operator+’\n'),(64,28466,'2008-08-11 17:33:23',1,'build/debug/editor2/editor_controller.cpp:353: error: invalid operands of types ‘const char [2]’ and ‘const char* const’ to binary ‘operator+’\n'),(66,28470,'2008-08-11 18:03:18',0,''),(67,28475,'2008-08-11 21:57:07',0,''),(101,28698,'2008-08-18 07:23:03',0,''),(102,28701,'2008-08-18 12:17:15',0,'campaign_server/campaign_server.cpp:317: warning: comparison is always true due to limited range of data type\n'),(104,28706,'2008-08-18 14:18:23',0,'campaign_server/campaign_server.cpp:317: warning: comparison is always true due to limited range of data type\n'),(106,28733,'2008-08-18 21:56:00',1,'serialization/parser.cpp:340: error: expected primary-expression before ‘(’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘<<’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘<<’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘<<’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘<’ token\nserialization/parser.cpp:342: error: expected primary-expression before ‘.’ token\nserialization/parser.cpp:344: error: expected primary-expression before ‘==’ token\nserialization/parser.cpp:344: error: expected primary-expression before ‘==’ token\nserialization/parser.cpp:344: error: expected primary-expression before ‘==’ token\nserialization/parser.cpp:344: error: expected primary-expression before ‘=’ token\nserialization/parser.cpp:345: error: expected `;\\\' before ‘)’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘>>’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘>>’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘>>’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘>’ token\nserialization/parser.cpp:351: error: expected primary-expression before ‘.’ token\nserialization/parser.cpp:352: error: expected `;\\\' before ‘}’ token\n'),(108,28734,'2008-08-18 22:16:59',0,''),(110,28760,'2008-08-19 08:21:58',0,''),(111,28764,'2008-08-19 10:23:32',0,''),(112,28767,'2008-08-19 11:24:07',0,''),(113,28768,'2008-08-19 12:27:13',0,''),(114,28769,'2008-08-19 13:23:12',0,''),(115,28770,'2008-08-19 16:26:38',0,''),(116,28773,'2008-08-19 20:24:51',0,''),(117,28776,'2008-08-19 21:28:19',0,''),(118,28783,'2008-08-20 07:46:12',0,''),(119,28784,'2008-08-20 08:20:36',0,''),(120,28785,'2008-08-20 10:50:12',0,''),(121,28792,'2008-08-20 17:41:46',0,''),(122,28797,'2008-08-20 18:38:27',0,''),(123,28805,'2008-08-20 19:28:14',0,''),(124,28818,'2008-08-21 06:28:56',0,''),(125,28819,'2008-08-21 07:24:16',0,''),(126,28821,'2008-08-21 10:23:40',0,''),(127,28823,'2008-08-21 11:23:03',0,''),(128,28824,'2008-08-21 13:28:56',0,''),(129,28837,'2008-08-22 06:38:06',0,'editor2/mouse_action.hpp:205: warning: ‘editor2::brush_drag_mouse_action::brush_’ will be initialized after\neditor2/mouse_action.hpp:191: warning: ‘gamemap::location editor2::brush_drag_mouse_action::previous_drag_hex_’\neditor2/mouse_action.hpp:133: warning: when initialized here\ndistcc[5584] ERROR: compile build/debug/editor2/editor_controller.cpp on localhost failed\n'),(130,28839,'2008-08-22 08:26:41',0,''); /*!40000 ALTER TABLE `builds` ENABLE KEYS */; UNLOCK TABLES;