From 041c93ce0bc00cb6417ce2e4bdce2ed84d37f50a Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Tue, 22 May 2012 06:31:37 -0400
Subject: [PATCH] Removed $Id$

---
 bin/importgettext.sh |   13 ++++---------
 1 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/bin/importgettext.sh b/bin/importgettext.sh
index aab6101..a63ac00 100755
--- a/bin/importgettext.sh
+++ b/bin/importgettext.sh
@@ -1,7 +1,6 @@
 #!/usr/bin/env php
 <?php
 /*
-
  +-----------------------------------------------------------------------+
  | bin/importgettext.sh                                                  |
  |                                                                       |
@@ -14,9 +13,6 @@
  +-----------------------------------------------------------------------+
  | Author: Thomas Bruederli <roundcube@gmail.com>                        |
  +-----------------------------------------------------------------------+
-
- $Id$
-
 */
 
 define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
@@ -39,7 +35,7 @@
 foreach ($out as $outfn => $texts) {
 	$lang = preg_match('!/([a-z]{2}(_[A-Z]{2})?)[./]!', $outfn, $m) ? $m[1] : '';
 	$varname = strpos($outfn, 'messages.inc') !== false ? 'messages' : 'labels';
-	
+
 	$header = <<<EOF
 <?php
 
@@ -54,14 +50,13 @@
  +-----------------------------------------------------------------------+
  | Author: %-62s|
  +-----------------------------------------------------------------------+
- @version %s$
 */
 
 $%s = array();
 
 EOF;
 
-	$output = sprintf($header, $lang, $varname.'.inc', date('Y'), $texts['_translator'], '$Id', $varname);
+	$output = sprintf($header, $lang, $varname.'.inc', date('Y'), $texts['_translator'], $varname);
 
 	foreach ($texts as $label => $value) {
 	    if (is_array($value)) { var_dump($outfn, $label, $value); exit; }
@@ -131,7 +126,7 @@
 					$out[$file][$label] = $msgstr;
 				}
 			}
-			
+
 			$msgid = null;
 			$msgstr = '';
 			$dests = array();
@@ -167,7 +162,7 @@
 			$out[$file]['_translator'] = $translator;
 		}
 	}
-	
+
 	return $language ? $out : array();
 }
 

--
Gitblit v1.9.1