Browse Source

Removed more development messages from translations

Jan Rio Krause 11 years ago
parent
commit
840adb873b

+ 4 - 4
Console/Command/CopyShell.php

@@ -159,7 +159,7 @@ class CopyShell extends AppShell {
 		*/
 		} else {
 			array_unshift($connections, 'q', 'h');
-			$connection = $this->in(__d('tools', 'Use Sitecopy Config ([q] to quit, [h] for help)') . ':', $connections, 'q');
+			$connection = $this->in('Use Sitecopy Config ([q] to quit, [h] for help)' . ':', $connections, 'q');
 		}
 
 		$this->out('');
@@ -294,7 +294,7 @@ class CopyShell extends AppShell {
 				$this->args[0] = null; # only the first time
 			}
 			if (empty($action) || !in_array($action, $allowedActions)) {
-				$action = strtolower($this->in(__d('tools', 'Init, Catchup, List, Fetch, Update, Synch (or [q] to quit)') . ':', array_merge($allowedActions, array('q')), 'l'));
+				$action = strtolower($this->in('Init, Catchup, List, Fetch, Update, Synch (or [q] to quit)' . ':', array_merge($allowedActions, array('q')), 'l'));
 			}
 
 			if ($action === 'q') {
@@ -303,7 +303,7 @@ class CopyShell extends AppShell {
 			if (in_array($action, $allowedActions)) {
 				// synch can destroy local information that might not have been saved yet, so confirm
 				if ($action === 's') {
-					$continue = $this->in(__d('tools', 'Local files might be overridden... Continue?'), array('y', 'n'), 'n');
+					$continue = $this->in('Local files might be overridden... Continue?', array('y', 'n'), 'n');
 					if (strtolower($continue) !== 'y' && strtolower($continue) !== 'yes') {
 						$action = '';
 						continue;
@@ -478,7 +478,7 @@ class CopyShell extends AppShell {
 		$this->out("\ts: Synch (Get remote content and override local files");
 		$this->out("");
 
-		$continue = $this->in(__d('tools', 'Show script help, too?'), array('y', 'n'), 'y');
+		$continue = $this->in('Show script help, too?', array('y', 'n'), 'y');
 		if (strtolower($continue) === 'y' || strtolower($continue) === 'yes') {
 			// somehow does not work yet (inside cake console anyway...)
 			$this->_exec(false, array('--help'));

+ 6 - 6
Console/Command/FolderSyncShell.php

@@ -75,11 +75,11 @@ class FolderSyncShell extends AppShell {
 		$excludes = $this->excludes;
 		$this->_sync($this->sourceFolder, $this->targetFolder, $excludes);
 
-		$this->out(__d('tools', 'Files: %s', $this->files));
+		$this->out(sprintf('Files: %s', $this->files));
 		$this->out();
 
 		if (!empty($this->missing)) {
-			$this->out(__d('tools', '%s missing files', count($this->missing)));
+			$this->out(sprintf('%s missing files', count($this->missing)));
 			foreach ($this->missing as $missing) {
 				$this->out('- ' . $missing, 1, Shell::VERBOSE);
 			}
@@ -87,10 +87,10 @@ class FolderSyncShell extends AppShell {
 		}
 
 		if ($this->updatedFiles) {
-			$this->out(__d('tools', '%s target files updated', $this->updatedFiles));
+			$this->out(sprintf('%s target files updated', $this->updatedFiles));
 		}
 		if ($this->removedFiles) {
-			$this->out(__d('tools', '%s source files removed', $this->removedFiles));
+			$this->out(sprintf('%s source files removed', $this->removedFiles));
 		}
 		if (!$this->updatedFiles && !$this->removedFiles) {
 			$this->out('(nothing to do)');
@@ -152,9 +152,9 @@ class FolderSyncShell extends AppShell {
 	}
 
 	public function help() {
-		$head = __d('tools', "Usage: cake FolderSync <command>") . "\n";
+		$head = 'Usage: cake FolderSync <command>' . "\n";
 		$head .= "-----------------------------------------------\n";
-		$head .= __d('tools', "Commands:") . "\n\n";
+		$head .= 'Commands:' . "\n\n";
 
 		$head .= "\t" . 'update' . "\n\n";
 		//$head .= "\t" . 'update' . "\n\n";

+ 10 - 10
Console/Command/HashShell.php

@@ -28,7 +28,7 @@ class HashShell extends AppShell {
 			$this->out(($key + 1) . ': ' . $t . (in_array($t, $this->active) ? ' (!)' : ''));
 		}
 		while (!isset($type) || !in_array($type - 1, $types)) {
-			$type = $this->in(__d('tools', 'Select hashType - or [q] to quit'), null, static::DEFAULT_HASH_ALG);
+			$type = $this->in('Select hashType - or [q] to quit', null, static::DEFAULT_HASH_ALG);
 			if ($type === 'q') {
 				return $this->error('Aborted!');
 			}
@@ -36,7 +36,7 @@ class HashShell extends AppShell {
 		$type--;
 
 		while (empty($pwToHash) || mb_strlen($pwToHash) < 2) {
-			$pwToHash = $this->in(__d('tools', 'String to Hash (2 characters at least)'));
+			$pwToHash = $this->in('String to Hash (2 characters at least)');
 		}
 
 		$pw = $this->_hash($hashAlgos[$type], $pwToHash);
@@ -112,25 +112,25 @@ class HashShell extends AppShell {
 	public function getOptionParser() {
 		$parser = parent::getOptionParser();
 
-		$parser->description(__d('tools', 'A console tool for hashing strings'))
+		$parser->description('A console tool for hashing strings')
 			->addSubcommand('string', array(
-				'help' => __d('tools', 'Hash a string'),
+				'help' => 'Hash a string',
 				'parser' => array(
-					'description' => __d('tools', 'hash'),
+					'description' => 'hash',
 				)
 			))->addSubcommand('compare', array(
-				'help' => __d('tools', 'Compare algs'),
+				'help' => 'Compare algs',
 				'parser' => array(
-					'description' => __d('tools', 'Compare algs'),
+					'description' => 'Compare algs',
 				)
 			))->addSubcommand('time', array(
-				'help' => __d('tools', 'Measure alg times'),
+				'help' => 'Measure alg times',
 				'parser' => array(
-					'description' => __d('tools', 'Measure alg times'),
+					'description' => 'Measure alg times',
 				)
 			))->epilog(
 				array(
-					__d('tools', 'sha1 is the default algorithm')
+					'sha1 is the default algorithm'
 				)
 			);
 		return $parser;

+ 1 - 1
Console/Command/IndentShell.php

@@ -92,7 +92,7 @@ class IndentShell extends AppShell {
 			if (!empty($this->params['dry-run'])) {
 				$this->out('TEST DONE');
 			} else {
-				$continue = $this->in(__d('tools', 'Modifying files! Continue?'), array('y', 'n'), 'n');
+				$continue = $this->in('Modifying files! Continue?', array('y', 'n'), 'n');
 				if (strtolower($continue) !== 'y' && strtolower($continue) !== 'yes') {
 					return $this->error('...aborted');
 				}

+ 1 - 1
Console/Command/IndexShell.php

@@ -208,7 +208,7 @@ class IndexShell extends AppShell {
 		if (empty($this->params['interactive'])) {
 			$continue = 'Y';
 		} else {
-			$continue = strtoupper($this->in(__d('tools', 'Run this statement?'), array('Y', 'N', 'A', 'Q')));
+			$continue = strtoupper($this->in('Run this statement?', array('Y', 'N', 'A', 'Q')));
 			switch ($continue) {
 				case 'Q':
 					return $this->_stop();

+ 1 - 1
Console/Command/PhpTagShell.php

@@ -74,7 +74,7 @@ class PhpTagShell extends AppShell {
 
 					while (empty($action)) {
 						//TODO: [r]!
-						$action = $this->in(__d('tools', 'Remove? [y]/[n], [a] for all in this folder, [r] for all below, [*] for all files(!), [q] to quit'), array('y', 'n', 'r', 'a', 'q', '*'), 'q');
+						$action = $this->in('Remove? [y]/[n], [a] for all in this folder, [r] for all below, [*] for all files(!), [q] to quit', array('y', 'n', 'r', 'a', 'q', '*'), 'q');
 					}
 				} else {
 					$action = 'y';

+ 2 - 2
Console/Command/PwdShell.php

@@ -27,13 +27,13 @@ class PwdShell extends AppShell {
 			}
 		}
 		if (!$class || !method_exists($class, 'password')) {
-			return $this->error(__d('tools', 'No Auth Component found'));
+			return $this->error('No Auth Component found');
 		}
 
 		$this->out('Using: ' . $class);
 
 		while (empty($pwToHash) || mb_strlen($pwToHash) < 2) {
-			$pwToHash = $this->in(__d('tools', 'Password to Hash (2 characters at least)'));
+			$pwToHash = $this->in('Password to Hash (2 characters at least)');
 		}
 
 		if ($authType = Configure::read('Passwordable.authType')) {

+ 2 - 2
Console/Command/ResetShell.php

@@ -34,7 +34,7 @@ class ResetShell extends AppShell {
 		$this->out('Email:');
 		App::uses('Validation', 'Utility');
 		while (empty($email) || !Validation::email($email)) {
-			$email = $this->in(__d('tools', 'New email address (must have a valid form at least)'));
+			$email = $this->in('New email address (must have a valid form at least)');
 		}
 
 		$this->User = ClassRegistry::init(CLASS_USER);
@@ -76,7 +76,7 @@ class ResetShell extends AppShell {
 			$pwToHash = $this->args[0];
 		}
 		while (empty($pwToHash) || mb_strlen($pwToHash) < 2) {
-			$pwToHash = $this->in(__d('tools', 'Password to Hash (2 characters at least)'));
+			$pwToHash = $this->in('Password to Hash (2 characters at least)');
 		}
 		$this->hr();
 		$this->out('Password:');

+ 9 - 9
Console/Command/UserShell.php

@@ -24,10 +24,10 @@ class UserShell extends AppShell {
 	 */
 	public function main() {
 		while (empty($username)) {
-			$username = $this->in(__d('tools', 'Username (2 characters at least)'));
+			$username = $this->in('Username (2 characters at least)');
 		}
 		while (empty($password)) {
-			$password = $this->in(__d('tools', 'Password (2 characters at least)'));
+			$password = $this->in('Password (2 characters at least)');
 		}
 
 		$schema = $this->User->schema();
@@ -42,7 +42,7 @@ class UserShell extends AppShell {
 
 			$roleIds = array_keys($roles);
 			while (!empty($roles) && empty($role)) {
-				$role = $this->in(__d('tools', 'Role'), $roleIds);
+				$role = $this->in('Role', $roleIds);
 			}
 		} elseif (method_exists($this->User, 'roles')) {
 			$roles = User::roles();
@@ -54,12 +54,12 @@ class UserShell extends AppShell {
 
 			$roleIds = array_keys($roles);
 			while (!empty($roles) && empty($role)) {
-				$role = $this->in(__d('tools', 'Role'), $roleIds);
+				$role = $this->in('Role', $roleIds);
 			}
 		}
 		if (empty($roles)) {
 			$this->out('No Role found (either no table, or no data)');
-			$role = $this->in(__d('tools', 'Please insert a role manually'));
+			$role = $this->in('Please insert a role manually');
 		}
 
 		$this->out('');
@@ -83,15 +83,15 @@ class UserShell extends AppShell {
 		if (!empty($schema['status']) && method_exists('User', 'statuses')) {
 			$statuses = User::statuses();
 			$this->out(print_r($statuses, true));
-			$status = $this->in(__d('tools', 'Please insert a status'), array_keys($statuses));
+			$status = $this->in('Please insert a status', array_keys($statuses));
 
 			$data['User']['status'] = $status;
 		}
 
 		if (!empty($schema['email'])) {
-			$provideEmail = $this->in(__d('tools', 'Provide Email? '), array('y', 'n'), 'n');
+			$provideEmail = $this->in('Provide Email?', array('y', 'n'), 'n');
 			if ($provideEmail === 'y') {
-				$email = $this->in(__d('tools', 'Please insert an email'));
+				$email = $this->in('Please insert an email');
 				$data['User']['email'] = $email;
 			}
 			if (!empty($schema['email_confirmed'])) {
@@ -100,7 +100,7 @@ class UserShell extends AppShell {
 		}
 
 		$this->out('');
-		$continue = $this->in(__d('tools', 'Continue?'), array('y', 'n'), 'n');
+		$continue = $this->in('Continue?', array('y', 'n'), 'n');
 		if ($continue !== 'y') {
 			return $this->error('Not Executed!');
 		}

+ 3 - 3
Console/Command/WhitespaceShell.php

@@ -28,7 +28,7 @@ class WhitespaceShell extends AppShell {
 		$files = $App->findRecursive('.*\.php');
 		$this->out('Found ' . count($files) . ' files.');
 
-		$action = $this->in(__d('tools', 'Continue? [y]/[n]'), array('y', 'n'), 'n');
+		$action = $this->in('Continue? [y]/[n]', array('y', 'n'), 'n');
 		if ($action !== 'y') {
 			return $this->error('Aborted');
 		}
@@ -64,7 +64,7 @@ class WhitespaceShell extends AppShell {
 
 				while (empty($action)) {
 					//TODO: [r]!
-					$action = $this->in(__d('tools', 'Remove? [y]/[n], [a] for all in this folder, [r] for all below, [*] for all files(!), [q] to quit'), array('y', 'n', 'r', 'a', 'q', '*'), 'q');
+					$action = $this->in('Remove? [y]/[n], [a] for all in this folder, [r] for all below, [*] for all files(!), [q] to quit', array('y', 'n', 'r', 'a', 'q', '*'), 'q');
 				}
 			} else {
 				$action = 'y';
@@ -121,7 +121,7 @@ class WhitespaceShell extends AppShell {
 
 		$this->out('Found ' . count($files) . ' files.');
 
-		$action = $this->in(__d('tools', 'Continue? [y]/[n]'), array('y', 'n'), 'n');
+		$action = $this->in('Continue? [y]/[n]', array('y', 'n'), 'n');
 		if ($action !== 'y') {
 			return $this->error('Aborted');
 		}

+ 1 - 135
Locale/ces/LC_MESSAGES/tools.po

@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
-"POT-Creation-Date: 2014-11-08 23:24+0000\n"
+"POT-Creation-Date: 2014-11-09 00:23+0000\n"
 "PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n"
 "Last-Translator: NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
@@ -15,140 +15,6 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
 
-#: Console/Command/CopyShell.php:162
-msgid "Use Sitecopy Config ([q] to quit, [h] for help)"
-msgstr ""
-
-#: Console/Command/CopyShell.php:297
-msgid "Init, Catchup, List, Fetch, Update, Synch (or [q] to quit)"
-msgstr ""
-
-#: Console/Command/CopyShell.php:306
-msgid "Local files might be overridden... Continue?"
-msgstr ""
-
-#: Console/Command/CopyShell.php:481
-msgid "Show script help, too?"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:78
-msgid "Files: %s"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:82
-msgid "%s missing files"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:90
-msgid "%s target files updated"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:93
-msgid "%s source files removed"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:155
-msgid "Usage: cake FolderSync <command>"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:157
-msgid "Commands:"
-msgstr ""
-
-#: Console/Command/HashShell.php:31
-msgid "Select hashType - or [q] to quit"
-msgstr ""
-
-#: Console/Command/HashShell.php:39
-msgid "String to Hash (2 characters at least)"
-msgstr ""
-
-#: Console/Command/HashShell.php:115
-msgid "A console tool for hashing strings"
-msgstr ""
-
-#: Console/Command/HashShell.php:117
-msgid "Hash a string"
-msgstr ""
-
-#: Console/Command/HashShell.php:119
-msgid "hash"
-msgstr ""
-
-#: Console/Command/HashShell.php:122;124
-msgid "Compare algs"
-msgstr ""
-
-#: Console/Command/HashShell.php:127;129
-msgid "Measure alg times"
-msgstr ""
-
-#: Console/Command/HashShell.php:133
-msgid "sha1 is the default algorithm"
-msgstr ""
-
-#: Console/Command/IndentShell.php:95
-msgid "Modifying files! Continue?"
-msgstr ""
-
-#: Console/Command/IndexShell.php:211
-msgid "Run this statement?"
-msgstr ""
-
-#: Console/Command/PhpTagShell.php:77
-#: Console/Command/WhitespaceShell.php:67
-msgid "Remove? [y]/[n], [a] for all in this folder, [r] for all below, [*] for all files(!), [q] to quit"
-msgstr ""
-
-#: Console/Command/PwdShell.php:30
-msgid "No Auth Component found"
-msgstr ""
-
-#: Console/Command/PwdShell.php:36
-#: Console/Command/ResetShell.php:79
-msgid "Password to Hash (2 characters at least)"
-msgstr ""
-
-#: Console/Command/ResetShell.php:37
-msgid "New email address (must have a valid form at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:27
-msgid "Username (2 characters at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:30
-msgid "Password (2 characters at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:45;57
-msgid "Role"
-msgstr ""
-
-#: Console/Command/UserShell.php:62
-msgid "Please insert a role manually"
-msgstr ""
-
-#: Console/Command/UserShell.php:86
-msgid "Please insert a status"
-msgstr ""
-
-#: Console/Command/UserShell.php:92
-msgid "Provide Email? "
-msgstr ""
-
-#: Console/Command/UserShell.php:94
-msgid "Please insert an email"
-msgstr ""
-
-#: Console/Command/UserShell.php:103
-msgid "Continue?"
-msgstr ""
-
-#: Console/Command/WhitespaceShell.php:31;124
-msgid "Continue? [y]/[n]"
-msgstr ""
-
 #: Controller/QloginController.php:38
 msgid "Invalid Key"
 msgstr ""

+ 1 - 135
Locale/deu/LC_MESSAGES/tools.po

@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
-"POT-Creation-Date: 2014-11-08 23:24+0000\n"
+"POT-Creation-Date: 2014-11-09 00:23+0000\n"
 "PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n"
 "Last-Translator: NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
@@ -15,140 +15,6 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
 
-#: Console/Command/CopyShell.php:162
-msgid "Use Sitecopy Config ([q] to quit, [h] for help)"
-msgstr ""
-
-#: Console/Command/CopyShell.php:297
-msgid "Init, Catchup, List, Fetch, Update, Synch (or [q] to quit)"
-msgstr ""
-
-#: Console/Command/CopyShell.php:306
-msgid "Local files might be overridden... Continue?"
-msgstr ""
-
-#: Console/Command/CopyShell.php:481
-msgid "Show script help, too?"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:78
-msgid "Files: %s"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:82
-msgid "%s missing files"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:90
-msgid "%s target files updated"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:93
-msgid "%s source files removed"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:155
-msgid "Usage: cake FolderSync <command>"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:157
-msgid "Commands:"
-msgstr ""
-
-#: Console/Command/HashShell.php:31
-msgid "Select hashType - or [q] to quit"
-msgstr ""
-
-#: Console/Command/HashShell.php:39
-msgid "String to Hash (2 characters at least)"
-msgstr ""
-
-#: Console/Command/HashShell.php:115
-msgid "A console tool for hashing strings"
-msgstr ""
-
-#: Console/Command/HashShell.php:117
-msgid "Hash a string"
-msgstr ""
-
-#: Console/Command/HashShell.php:119
-msgid "hash"
-msgstr ""
-
-#: Console/Command/HashShell.php:122;124
-msgid "Compare algs"
-msgstr ""
-
-#: Console/Command/HashShell.php:127;129
-msgid "Measure alg times"
-msgstr ""
-
-#: Console/Command/HashShell.php:133
-msgid "sha1 is the default algorithm"
-msgstr ""
-
-#: Console/Command/IndentShell.php:95
-msgid "Modifying files! Continue?"
-msgstr ""
-
-#: Console/Command/IndexShell.php:211
-msgid "Run this statement?"
-msgstr ""
-
-#: Console/Command/PhpTagShell.php:77
-#: Console/Command/WhitespaceShell.php:67
-msgid "Remove? [y]/[n], [a] for all in this folder, [r] for all below, [*] for all files(!), [q] to quit"
-msgstr ""
-
-#: Console/Command/PwdShell.php:30
-msgid "No Auth Component found"
-msgstr ""
-
-#: Console/Command/PwdShell.php:36
-#: Console/Command/ResetShell.php:79
-msgid "Password to Hash (2 characters at least)"
-msgstr ""
-
-#: Console/Command/ResetShell.php:37
-msgid "New email address (must have a valid form at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:27
-msgid "Username (2 characters at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:30
-msgid "Password (2 characters at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:45;57
-msgid "Role"
-msgstr ""
-
-#: Console/Command/UserShell.php:62
-msgid "Please insert a role manually"
-msgstr ""
-
-#: Console/Command/UserShell.php:86
-msgid "Please insert a status"
-msgstr ""
-
-#: Console/Command/UserShell.php:92
-msgid "Provide Email? "
-msgstr ""
-
-#: Console/Command/UserShell.php:94
-msgid "Please insert an email"
-msgstr ""
-
-#: Console/Command/UserShell.php:103
-msgid "Continue?"
-msgstr ""
-
-#: Console/Command/WhitespaceShell.php:31;124
-msgid "Continue? [y]/[n]"
-msgstr ""
-
 #: Controller/QloginController.php:38
 msgid "Invalid Key"
 msgstr "Ungültiger Schlüssel"

+ 1 - 135
Locale/spa/LC_MESSAGES/tools.po

@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
-"POT-Creation-Date: 2014-11-08 23:24+0000\n"
+"POT-Creation-Date: 2014-11-09 00:23+0000\n"
 "PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n"
 "Last-Translator: NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
@@ -15,140 +15,6 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
 
-#: Console/Command/CopyShell.php:162
-msgid "Use Sitecopy Config ([q] to quit, [h] for help)"
-msgstr ""
-
-#: Console/Command/CopyShell.php:297
-msgid "Init, Catchup, List, Fetch, Update, Synch (or [q] to quit)"
-msgstr ""
-
-#: Console/Command/CopyShell.php:306
-msgid "Local files might be overridden... Continue?"
-msgstr ""
-
-#: Console/Command/CopyShell.php:481
-msgid "Show script help, too?"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:78
-msgid "Files: %s"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:82
-msgid "%s missing files"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:90
-msgid "%s target files updated"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:93
-msgid "%s source files removed"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:155
-msgid "Usage: cake FolderSync <command>"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:157
-msgid "Commands:"
-msgstr ""
-
-#: Console/Command/HashShell.php:31
-msgid "Select hashType - or [q] to quit"
-msgstr ""
-
-#: Console/Command/HashShell.php:39
-msgid "String to Hash (2 characters at least)"
-msgstr ""
-
-#: Console/Command/HashShell.php:115
-msgid "A console tool for hashing strings"
-msgstr ""
-
-#: Console/Command/HashShell.php:117
-msgid "Hash a string"
-msgstr ""
-
-#: Console/Command/HashShell.php:119
-msgid "hash"
-msgstr ""
-
-#: Console/Command/HashShell.php:122;124
-msgid "Compare algs"
-msgstr ""
-
-#: Console/Command/HashShell.php:127;129
-msgid "Measure alg times"
-msgstr ""
-
-#: Console/Command/HashShell.php:133
-msgid "sha1 is the default algorithm"
-msgstr ""
-
-#: Console/Command/IndentShell.php:95
-msgid "Modifying files! Continue?"
-msgstr ""
-
-#: Console/Command/IndexShell.php:211
-msgid "Run this statement?"
-msgstr ""
-
-#: Console/Command/PhpTagShell.php:77
-#: Console/Command/WhitespaceShell.php:67
-msgid "Remove? [y]/[n], [a] for all in this folder, [r] for all below, [*] for all files(!), [q] to quit"
-msgstr ""
-
-#: Console/Command/PwdShell.php:30
-msgid "No Auth Component found"
-msgstr ""
-
-#: Console/Command/PwdShell.php:36
-#: Console/Command/ResetShell.php:79
-msgid "Password to Hash (2 characters at least)"
-msgstr ""
-
-#: Console/Command/ResetShell.php:37
-msgid "New email address (must have a valid form at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:27
-msgid "Username (2 characters at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:30
-msgid "Password (2 characters at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:45;57
-msgid "Role"
-msgstr ""
-
-#: Console/Command/UserShell.php:62
-msgid "Please insert a role manually"
-msgstr ""
-
-#: Console/Command/UserShell.php:86
-msgid "Please insert a status"
-msgstr ""
-
-#: Console/Command/UserShell.php:92
-msgid "Provide Email? "
-msgstr ""
-
-#: Console/Command/UserShell.php:94
-msgid "Please insert an email"
-msgstr ""
-
-#: Console/Command/UserShell.php:103
-msgid "Continue?"
-msgstr ""
-
-#: Console/Command/WhitespaceShell.php:31;124
-msgid "Continue? [y]/[n]"
-msgstr ""
-
 #: Controller/QloginController.php:38
 msgid "Invalid Key"
 msgstr ""

+ 1 - 135
Locale/tools.pot

@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PROJECT VERSION\n"
-"POT-Creation-Date: 2014-11-08 23:24+0000\n"
+"POT-Creation-Date: 2014-11-09 00:23+0000\n"
 "PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n"
 "Last-Translator: NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
@@ -14,140 +14,6 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
 
-#: Console/Command/CopyShell.php:162
-msgid "Use Sitecopy Config ([q] to quit, [h] for help)"
-msgstr ""
-
-#: Console/Command/CopyShell.php:297
-msgid "Init, Catchup, List, Fetch, Update, Synch (or [q] to quit)"
-msgstr ""
-
-#: Console/Command/CopyShell.php:306
-msgid "Local files might be overridden... Continue?"
-msgstr ""
-
-#: Console/Command/CopyShell.php:481
-msgid "Show script help, too?"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:78
-msgid "Files: %s"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:82
-msgid "%s missing files"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:90
-msgid "%s target files updated"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:93
-msgid "%s source files removed"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:155
-msgid "Usage: cake FolderSync <command>"
-msgstr ""
-
-#: Console/Command/FolderSyncShell.php:157
-msgid "Commands:"
-msgstr ""
-
-#: Console/Command/HashShell.php:31
-msgid "Select hashType - or [q] to quit"
-msgstr ""
-
-#: Console/Command/HashShell.php:39
-msgid "String to Hash (2 characters at least)"
-msgstr ""
-
-#: Console/Command/HashShell.php:115
-msgid "A console tool for hashing strings"
-msgstr ""
-
-#: Console/Command/HashShell.php:117
-msgid "Hash a string"
-msgstr ""
-
-#: Console/Command/HashShell.php:119
-msgid "hash"
-msgstr ""
-
-#: Console/Command/HashShell.php:122;124
-msgid "Compare algs"
-msgstr ""
-
-#: Console/Command/HashShell.php:127;129
-msgid "Measure alg times"
-msgstr ""
-
-#: Console/Command/HashShell.php:133
-msgid "sha1 is the default algorithm"
-msgstr ""
-
-#: Console/Command/IndentShell.php:95
-msgid "Modifying files! Continue?"
-msgstr ""
-
-#: Console/Command/IndexShell.php:211
-msgid "Run this statement?"
-msgstr ""
-
-#: Console/Command/PhpTagShell.php:77
-#: Console/Command/WhitespaceShell.php:67
-msgid "Remove? [y]/[n], [a] for all in this folder, [r] for all below, [*] for all files(!), [q] to quit"
-msgstr ""
-
-#: Console/Command/PwdShell.php:30
-msgid "No Auth Component found"
-msgstr ""
-
-#: Console/Command/PwdShell.php:36
-#: Console/Command/ResetShell.php:79
-msgid "Password to Hash (2 characters at least)"
-msgstr ""
-
-#: Console/Command/ResetShell.php:37
-msgid "New email address (must have a valid form at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:27
-msgid "Username (2 characters at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:30
-msgid "Password (2 characters at least)"
-msgstr ""
-
-#: Console/Command/UserShell.php:45;57
-msgid "Role"
-msgstr ""
-
-#: Console/Command/UserShell.php:62
-msgid "Please insert a role manually"
-msgstr ""
-
-#: Console/Command/UserShell.php:86
-msgid "Please insert a status"
-msgstr ""
-
-#: Console/Command/UserShell.php:92
-msgid "Provide Email? "
-msgstr ""
-
-#: Console/Command/UserShell.php:94
-msgid "Please insert an email"
-msgstr ""
-
-#: Console/Command/UserShell.php:103
-msgid "Continue?"
-msgstr ""
-
-#: Console/Command/WhitespaceShell.php:31;124
-msgid "Continue? [y]/[n]"
-msgstr ""
-
 #: Controller/QloginController.php:38
 msgid "Invalid Key"
 msgstr ""