Browse Source
The strings are externalized into the root resource bundles. The resource bundles are stored under the new "resources" source folder to get proper maven build. Strings from tests are, in general, not externalized. Only in cases where it was necessary to make the test pass the strings were externalized. This was typically necessary in cases where e.getMessage() was used in assert and the exception message was slightly changed due to reuse of the externalized strings. Change-Id: Ic0f29c80b9a54fcec8320d8539a3e112852a1f7b Signed-off-by: Sasa Zivkov <sasa.zivkov@sap.com>stable-0.8
Sasa Zivkov
15 years ago
committed by
Shawn O. Pearce
234 changed files with 2766 additions and 1007 deletions
@ -0,0 +1,5 @@ |
|||||||
|
answerNo=n |
||||||
|
answerYes=y |
||||||
|
noSystemConsoleAvailable=No System.console available |
||||||
|
password=Password: |
||||||
|
usernameFor=Username for {0}: |
@ -0,0 +1,66 @@ |
|||||||
|
/* |
||||||
|
* Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@sap.com> |
||||||
|
* and other copyright owners as documented in the project's IP log. |
||||||
|
* |
||||||
|
* This program and the accompanying materials are made available |
||||||
|
* under the terms of the Eclipse Distribution License v1.0 which |
||||||
|
* accompanies this distribution, is reproduced below, and is |
||||||
|
* available at http://www.eclipse.org/org/documents/edl-v10.php
|
||||||
|
* |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or |
||||||
|
* without modification, are permitted provided that the following |
||||||
|
* conditions are met: |
||||||
|
* |
||||||
|
* - Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* |
||||||
|
* - Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following |
||||||
|
* disclaimer in the documentation and/or other materials provided |
||||||
|
* with the distribution. |
||||||
|
* |
||||||
|
* - Neither the name of the Eclipse Foundation, Inc. nor the |
||||||
|
* names of its contributors may be used to endorse or promote |
||||||
|
* products derived from this software without specific prior |
||||||
|
* written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||||
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
||||||
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||||||
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||||||
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
||||||
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.eclipse.jgit.console; |
||||||
|
|
||||||
|
import org.eclipse.jgit.nls.NLS; |
||||||
|
import org.eclipse.jgit.nls.TranslationBundle; |
||||||
|
|
||||||
|
/** |
||||||
|
* Translation bundle for JGit console |
||||||
|
*/ |
||||||
|
public class ConsoleText extends TranslationBundle { |
||||||
|
|
||||||
|
/** |
||||||
|
* @return an instance of this translation bundle |
||||||
|
*/ |
||||||
|
public static ConsoleText get() { |
||||||
|
return NLS.getBundleFor(ConsoleText.class); |
||||||
|
} |
||||||
|
|
||||||
|
/***/ public String answerNo; |
||||||
|
/***/ public String answerYes; |
||||||
|
/***/ public String noSystemConsoleAvailable; |
||||||
|
/***/ public String password; |
||||||
|
/***/ public String usernameFor; |
||||||
|
} |
@ -0,0 +1,21 @@ |
|||||||
|
alreadyInitializedByContainer=Already initialized by container |
||||||
|
cannotGetLengthOf=Cannot get length of {0} |
||||||
|
encodingNotSupportedByThisLibrary={0} "{1}": not supported by this library. |
||||||
|
expectedRepositoryAttribute=Expected Repository attribute |
||||||
|
filterMustNotBeNull=filter must not be null |
||||||
|
internalErrorDuringReceivePack=Internal error during receive-pack |
||||||
|
internalErrorDuringUploadPack=Internal error during upload-pack |
||||||
|
internalServerErrorRequestAttributeWasAlreadySet=Internal server error, request attribute {0} was already set when {1} was invoked. |
||||||
|
invalidBoolean=Invalid boolean {0} = {1} |
||||||
|
invalidIndex=Invalid index: {0} |
||||||
|
invalidRegexGroup=Invalid regex group {0} |
||||||
|
noResolverAvailable=No resolver available |
||||||
|
parameterNotSet=Parameter {0} not set |
||||||
|
pathForParamNotFound={0} (for {1}) not found |
||||||
|
pathNotSupported={0} not supported |
||||||
|
serviceNotEnabled=Service not enabled |
||||||
|
serviceNotPermitted=Service not permitted |
||||||
|
servletAlreadyInitialized=Servlet already initialized |
||||||
|
servletMustNotBeNull=servlet must not be null |
||||||
|
servletWasAlreadyBound=servlet was already bound |
||||||
|
unexpectedeOFOn=Unexpected EOF on {0} |
@ -0,0 +1,82 @@ |
|||||||
|
/* |
||||||
|
* Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@sap.com> |
||||||
|
* and other copyright owners as documented in the project's IP log. |
||||||
|
* |
||||||
|
* This program and the accompanying materials are made available |
||||||
|
* under the terms of the Eclipse Distribution License v1.0 which |
||||||
|
* accompanies this distribution, is reproduced below, and is |
||||||
|
* available at http://www.eclipse.org/org/documents/edl-v10.php
|
||||||
|
* |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or |
||||||
|
* without modification, are permitted provided that the following |
||||||
|
* conditions are met: |
||||||
|
* |
||||||
|
* - Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* |
||||||
|
* - Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following |
||||||
|
* disclaimer in the documentation and/or other materials provided |
||||||
|
* with the distribution. |
||||||
|
* |
||||||
|
* - Neither the name of the Eclipse Foundation, Inc. nor the |
||||||
|
* names of its contributors may be used to endorse or promote |
||||||
|
* products derived from this software without specific prior |
||||||
|
* written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||||
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
||||||
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||||||
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||||||
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
||||||
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.eclipse.jgit.http.server; |
||||||
|
|
||||||
|
import org.eclipse.jgit.nls.NLS; |
||||||
|
import org.eclipse.jgit.nls.TranslationBundle; |
||||||
|
|
||||||
|
/** |
||||||
|
* Translation bundle for JGit http server |
||||||
|
*/ |
||||||
|
public class HttpServerText extends TranslationBundle { |
||||||
|
|
||||||
|
/** |
||||||
|
* @return an instance of this translation bundle |
||||||
|
*/ |
||||||
|
public static HttpServerText get() { |
||||||
|
return NLS.getBundleFor(HttpServerText.class); |
||||||
|
} |
||||||
|
|
||||||
|
/***/ public String alreadyInitializedByContainer; |
||||||
|
/***/ public String cannotGetLengthOf; |
||||||
|
/***/ public String encodingNotSupportedByThisLibrary; |
||||||
|
/***/ public String expectedRepositoryAttribute; |
||||||
|
/***/ public String filterMustNotBeNull; |
||||||
|
/***/ public String internalErrorDuringReceivePack; |
||||||
|
/***/ public String internalErrorDuringUploadPack; |
||||||
|
/***/ public String internalServerErrorRequestAttributeWasAlreadySet; |
||||||
|
/***/ public String invalidBoolean; |
||||||
|
/***/ public String invalidIndex; |
||||||
|
/***/ public String invalidRegexGroup; |
||||||
|
/***/ public String noResolverAvailable; |
||||||
|
/***/ public String parameterNotSet; |
||||||
|
/***/ public String pathForParamNotFound; |
||||||
|
/***/ public String pathNotSupported; |
||||||
|
/***/ public String serviceNotEnabled; |
||||||
|
/***/ public String serviceNotPermitted; |
||||||
|
/***/ public String servletAlreadyInitialized; |
||||||
|
/***/ public String servletMustNotBeNull; |
||||||
|
/***/ public String servletWasAlreadyBound; |
||||||
|
/***/ public String unexpectedeOFOn; |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
CQString=CQ {0} |
||||||
|
CSVParsingError=CSV parsing error: {0} |
||||||
|
cannotLock=Cannot lock {0} |
||||||
|
cannotSerializeXML=Cannot serialize XML |
||||||
|
cannotWrite=Cannot write {0} |
||||||
|
committerString=Committer {0} {1} |
||||||
|
configurationFileInCommitHasNoProjectsDeclared=Configuration file {0} in commit {1} has no projects declared. |
||||||
|
configurationFileInCommitIsInvalid=Configuration file {0} in commit {1} is invalid |
||||||
|
contributorString=Contributor {0} |
||||||
|
incorrectlyScanned=Incorrectly scanned {0} |
||||||
|
invalidDate=Invalid date: {0} |
||||||
|
invalidURIFormat=Invalid URI format: {0} |
||||||
|
loginFailed=Login as {0} to {1} failed: {2} |
||||||
|
pageTitleWas=page title was "{0}" |
||||||
|
projectString=Project {0} ({1}) |
||||||
|
queryFailed=Query {0} failed: {1} |
||||||
|
responseNotHTMLAsExpected=Response not HTML as expected |
@ -0,0 +1,78 @@ |
|||||||
|
/* |
||||||
|
* Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@sap.com> |
||||||
|
* and other copyright owners as documented in the project's IP log. |
||||||
|
* |
||||||
|
* This program and the accompanying materials are made available |
||||||
|
* under the terms of the Eclipse Distribution License v1.0 which |
||||||
|
* accompanies this distribution, is reproduced below, and is |
||||||
|
* available at http://www.eclipse.org/org/documents/edl-v10.php
|
||||||
|
* |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or |
||||||
|
* without modification, are permitted provided that the following |
||||||
|
* conditions are met: |
||||||
|
* |
||||||
|
* - Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* |
||||||
|
* - Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following |
||||||
|
* disclaimer in the documentation and/or other materials provided |
||||||
|
* with the distribution. |
||||||
|
* |
||||||
|
* - Neither the name of the Eclipse Foundation, Inc. nor the |
||||||
|
* names of its contributors may be used to endorse or promote |
||||||
|
* products derived from this software without specific prior |
||||||
|
* written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||||
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
||||||
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||||||
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||||||
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
||||||
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.eclipse.jgit.iplog; |
||||||
|
|
||||||
|
import org.eclipse.jgit.nls.NLS; |
||||||
|
import org.eclipse.jgit.nls.TranslationBundle; |
||||||
|
|
||||||
|
/** |
||||||
|
* Translation bundle for JGit IP Log |
||||||
|
*/ |
||||||
|
public class IpLogText extends TranslationBundle { |
||||||
|
|
||||||
|
/** |
||||||
|
* @return an instance of this translation bundle |
||||||
|
*/ |
||||||
|
public static IpLogText get() { |
||||||
|
return NLS.getBundleFor(IpLogText.class); |
||||||
|
} |
||||||
|
|
||||||
|
/***/ public String CQString; |
||||||
|
/***/ public String CSVParsingError; |
||||||
|
/***/ public String cannotLock; |
||||||
|
/***/ public String cannotSerializeXML; |
||||||
|
/***/ public String cannotWrite; |
||||||
|
/***/ public String committerString; |
||||||
|
/***/ public String configurationFileInCommitHasNoProjectsDeclared; |
||||||
|
/***/ public String configurationFileInCommitIsInvalid; |
||||||
|
/***/ public String contributorString; |
||||||
|
/***/ public String incorrectlyScanned; |
||||||
|
/***/ public String invalidDate; |
||||||
|
/***/ public String invalidURIFormat; |
||||||
|
/***/ public String loginFailed; |
||||||
|
/***/ public String pageTitleWas; |
||||||
|
/***/ public String projectString; |
||||||
|
/***/ public String queryFailed; |
||||||
|
/***/ public String responseNotHTMLAsExpected; |
||||||
|
} |
@ -0,0 +1,174 @@ |
|||||||
|
# default meta variable defined in the org.kohsuke.args4j.spi.StringOptionHandler |
||||||
|
VAL=VAL |
||||||
|
# default meta variable defined in the org.kohsuke.args4j.spi.StopOptionHandler |
||||||
|
ARGUMENTS=ARGUMENTS |
||||||
|
# default meta variable defined in the org.kohsuke.args4j.spi.OneArgumentOptionHandler |
||||||
|
N=N |
||||||
|
|
||||||
|
IPZillaPasswordPrompt=IPZilla Password |
||||||
|
authorInfo=Author: {0} <{1}> |
||||||
|
averageMSPerRead=average {0} ms/read |
||||||
|
branchAlreadyExists=branch {0} already exists |
||||||
|
branchCreatedFrom =branch: Created from {0} |
||||||
|
branchIsNotAnAncestorOfYourCurrentHEAD=The branch '{0}' is not an ancestor of your current HEAD.\nIf you are sure you want to delete it, run 'jgit branch -D {0}'. |
||||||
|
branchNotFound=branch '{0}' not found. |
||||||
|
cacheTreePathInfo="{0}": {1} entries, {2} children |
||||||
|
cannotBeRenamed={0} cannot be renamed |
||||||
|
cannotChekoutNoHeadsAdvertisedByRemote=cannot checkout; no HEAD advertised by remote |
||||||
|
cannotCreateCommand=Cannot create command {0} |
||||||
|
cannotCreateOutputStream=cannot create output stream |
||||||
|
cannotDeatchHEAD=Cannot deatch HEAD |
||||||
|
cannotDeleteTheBranchWhichYouAreCurrentlyOn=Cannot delete the branch '{0}' which you are currently on. |
||||||
|
cannotGuessLocalNameFrom=cannot guess local name from {0} |
||||||
|
cannotLock=Cannot lock {0} |
||||||
|
cannotReadBecause=cannot read {0}: {1} |
||||||
|
cannotReadPackageInformation=Cannot read package information. |
||||||
|
cannotRenameDetachedHEAD=Cannot rename detached HEAD |
||||||
|
cannotResolve=Cannot resolve {0} |
||||||
|
cannotSetupConsole=Cannot setup console |
||||||
|
cannotUseObjectsWithGlog=Cannot use --objects with glog |
||||||
|
cannotWrite=Cannot write {0} |
||||||
|
cantFindGitDirectory=error: can't find git directory |
||||||
|
cantWrite=Can't write {0} |
||||||
|
commitLabel=commit |
||||||
|
conflictingUsageOf_git_dir_andArguments=conflicting usage of --git-dir and arguments |
||||||
|
couldNotCreateBranch=Could not create branch {0}: {1} |
||||||
|
dateInfo=Date: {0} |
||||||
|
deletedBranch=Deleted branch {0} |
||||||
|
deletedRemoteBranch=Deleted remote branch {0} |
||||||
|
doesNotExist={0} does not exist |
||||||
|
everythingUpToDate=Everything up-to-date |
||||||
|
expectedNumberOfbytes=Expected {0} bytes. |
||||||
|
exporting=Exporting {0} |
||||||
|
failedToCommitIndex=failed to commit index |
||||||
|
failedToLockIndex=failed to lock index |
||||||
|
fatalError=fatal: {0} |
||||||
|
fatalErrorTagExists=fatal: tag '{0}' exists |
||||||
|
fatalThisProgramWillDestroyTheRepository=fatal: This program will destroy the repository\nfatal:\nfatal:\nfatal: {0}\nfatal:\nfatal: To continue, add {1} to the command line\nfatal: |
||||||
|
forcedUpdate=forced update |
||||||
|
fromURI=From {0} |
||||||
|
initializedEmptyGitRepositoryIn=Initialized empty Git repository in {0} |
||||||
|
invalidHttpProxyOnlyHttpSupported=Invalid http_proxy: {0}: Only http supported. |
||||||
|
jgitVersion=jgit version {0} |
||||||
|
listeningOn=Listening on {0} |
||||||
|
metaVar_DAG=DAG |
||||||
|
metaVar_KEY=KEY |
||||||
|
metaVar_arg=ARG |
||||||
|
metaVar_base=base |
||||||
|
metaVar_bucket=BUCKET |
||||||
|
metaVar_command=command |
||||||
|
metaVar_commitOrTag=COMMIT|TAG |
||||||
|
metaVar_commitish=commit-ish |
||||||
|
metaVar_connProp=conn.prop |
||||||
|
metaVar_directory=DIRECTORY |
||||||
|
metaVar_file=FILE |
||||||
|
metaVar_gitDir=GIT_DIR |
||||||
|
metaVar_hostName=HOSTNAME |
||||||
|
metaVar_message=message |
||||||
|
metaVar_name=name |
||||||
|
metaVar_object=object |
||||||
|
metaVar_op=OP |
||||||
|
metaVar_pass=PASS |
||||||
|
metaVar_path=path |
||||||
|
metaVar_paths=path ... |
||||||
|
metaVar_port=PORT |
||||||
|
metaVar_refs=REFS |
||||||
|
metaVar_refspec=refspec |
||||||
|
metaVar_remoteName=name |
||||||
|
metaVar_seconds=SECONDS |
||||||
|
metaVar_service=SERVICE |
||||||
|
metaVar_treeish=tree-ish |
||||||
|
metaVar_uriish=uri-ish |
||||||
|
metaVar_url=URL |
||||||
|
metaVar_user=USER |
||||||
|
metaVar_version=VERSION |
||||||
|
mostCommonlyUsedCommandsAre=The most commonly used commands are: |
||||||
|
needApprovalToDestroyCurrentRepository=Need approval to destroy current repository |
||||||
|
noGitRepositoryConfigured=No Git repository configured. |
||||||
|
noSuchFile=no such file: {0} |
||||||
|
noTREESectionInIndex=no 'TREE' section in index |
||||||
|
nonFastForward=non-fast forward |
||||||
|
notABranch={0} is not a branch |
||||||
|
notACommit={0} is not a commit |
||||||
|
notAGitRepository='{0}' not a git repository |
||||||
|
notAJgitCommand={0} is not a jgit command |
||||||
|
notARevision=Not a revision: {0} |
||||||
|
notATagVersionIsRequired={0} is not a tag, --version is required |
||||||
|
notATree={0} is not a tree |
||||||
|
notAValidRefName={0} is not a valid ref name |
||||||
|
notAnIndexFile={0} is not an index file |
||||||
|
notAnObject={0} is not an object |
||||||
|
notFound=!! NOT FOUND !! |
||||||
|
onlyOneMetaVarExpectedIn=Only one {0} expected in {1}. |
||||||
|
pushTo=To {0} |
||||||
|
remoteMessage=remote: {0} |
||||||
|
remoteRefObjectChangedIsNotExpectedOne=remote ref object changed - is not expected one {0} |
||||||
|
remoteSideDoesNotSupportDeletingRefs=remote side does not support deleting refs |
||||||
|
repaint=Repaint |
||||||
|
serviceNotSupported=Service '{0}' not supported |
||||||
|
skippingObject=skipping {0} {1} |
||||||
|
timeInMilliSeconds={0} ms |
||||||
|
tooManyRefsGiven=Too many refs given |
||||||
|
unsupportedOperation=Unsupported operation: {0} |
||||||
|
usage_CommandLineClientForamazonsS3Service=Command line client for Amazon's S3 service |
||||||
|
usage_CreateABareRepository=Create a bare repository |
||||||
|
usage_CreateATag=Create a tag |
||||||
|
usage_CreateAnEmptyGitRepository=Create an empty git repository |
||||||
|
usage_DisplayTheVersionOfJgit=Display the version of jgit |
||||||
|
usage_IPZillaPassword=IPZilla Password |
||||||
|
usage_IPZillaURL=IPZilla URL |
||||||
|
usage_IPZillausername=IPZilla Username |
||||||
|
usage_RepositoryToReadFrom=Repository to read from |
||||||
|
usage_RepositoryToReceiveInto=Repository to receive into |
||||||
|
usage_ServerSideBackendForJgitFetch=Server side backend for 'jgit fetch' |
||||||
|
usage_ServerSideBackendForJgitPush=Server side backend for 'jgit push' |
||||||
|
usage_ShowDiffs=Show diffs |
||||||
|
usage_StopTrackingAFile=Stop tracking a file |
||||||
|
usage_UpdateRemoteRepositoryFromLocalRefs=Update remote repository from local refs |
||||||
|
usage_abortConnectionIfNoActivity=abort connection if no activity |
||||||
|
usage_actOnRemoteTrackingBranches=act on remote-tracking branches |
||||||
|
usage_alterTheDetailShown=alter the detail shown |
||||||
|
usage_approveDestructionOfRepository=approve destruction of repository |
||||||
|
usage_beMoreVerbose=be more verbose |
||||||
|
usage_beVerbose=be verbose |
||||||
|
usage_cloneRepositoryIntoNewDir=Clone a repository into a new directory |
||||||
|
usage_configureTheServiceInDaemonServicename=configure the service in daemon.servicename |
||||||
|
usage_deleteBranchEvenIfNotMerged=delete branch (even if not merged) |
||||||
|
usage_deleteFullyMergedBranch=delete fully merged branch |
||||||
|
usage_directoriesToExport=directories to export |
||||||
|
usage_disableTheServiceInAllRepositories=disable the service in all repositories |
||||||
|
usage_displayAListOfAllRegisteredJgitCommands=Display a list of all registered jgit commands |
||||||
|
usage_displayAllPossibleMergeBases=display all possible merge bases |
||||||
|
usage_displayThejavaStackTraceOnExceptions=display the Java stack trace on exceptions |
||||||
|
usage_displayThisHelpText=display this help text |
||||||
|
usage_enableTheServiceInAllRepositories=enable the service in all repositories |
||||||
|
usage_exportRepositoriesOverGit=Export repositories over git:// |
||||||
|
usage_exportWithoutGitDaemonExportOk=export without git-daemon-export-ok |
||||||
|
usage_fetchThinPack=fetch thin pack |
||||||
|
usage_fixAThinPackToBeComplete=fix a thin pack to be complete |
||||||
|
usage_forEachRefOutput=for-each-ref output |
||||||
|
usage_forceCreateBranchEvenExists=force create branch even exists |
||||||
|
usage_forceReplacingAnExistingTag=force replacing an existing tag |
||||||
|
usage_hostnameOrIpToListenOn=hostname (or ip) to listen on |
||||||
|
usage_indexFileFormatToCreate=index file format to create |
||||||
|
usage_inputOutputFile=Input/output file |
||||||
|
usage_listBothRemoteTrackingAndLocalBranches=list both remote-tracking and local branches |
||||||
|
usage_listCreateOrDeleteBranches=List, create, or delete branches |
||||||
|
usage_logAllPretty=format:%H %ct %P' output=log --all '--pretty=format:%H %ct %P' output |
||||||
|
usage_moveRenameABranch=move/rename a branch |
||||||
|
usage_outputFile=Output file |
||||||
|
usage_path=path |
||||||
|
usage_performFsckStyleChecksOnReceive=perform fsck style checks on receive |
||||||
|
usage_portNumberToListenOn=port number to listen on |
||||||
|
usage_produceAnEclipseIPLog=Produce an Eclipse IP log |
||||||
|
usage_pruneStaleTrackingRefs=prune stale tracking refs |
||||||
|
usage_recurseIntoSubtrees=recurse into subtrees |
||||||
|
usage_setTheGitRepositoryToOperateOn=set the git repository to operate on |
||||||
|
usage_showRefNamesMatchingCommits=Show ref names matching commits |
||||||
|
usage_symbolicVersionForTheProject=Symbolic version for the project |
||||||
|
usage_synchronizeIPZillaData=Synchronize IPZilla data |
||||||
|
usage_tagMessage=tag message |
||||||
|
usage_updateRemoteRefsFromAnotherRepository=Update remote refs from another repository |
||||||
|
usage_useNameInsteadOfOriginToTrackUpstream=use <name> instead of 'origin' to track upstream |
||||||
|
usage_viewCommitHistory=View commit history |
||||||
|
warningNoCommitGivenOnCommandLine=warning: No commit given on command line, assuming {0} |
@ -0,0 +1,142 @@ |
|||||||
|
/* |
||||||
|
* Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@sap.com> |
||||||
|
* and other copyright owners as documented in the project's IP log. |
||||||
|
* |
||||||
|
* This program and the accompanying materials are made available |
||||||
|
* under the terms of the Eclipse Distribution License v1.0 which |
||||||
|
* accompanies this distribution, is reproduced below, and is |
||||||
|
* available at http://www.eclipse.org/org/documents/edl-v10.php
|
||||||
|
* |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or |
||||||
|
* without modification, are permitted provided that the following |
||||||
|
* conditions are met: |
||||||
|
* |
||||||
|
* - Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* |
||||||
|
* - Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following |
||||||
|
* disclaimer in the documentation and/or other materials provided |
||||||
|
* with the distribution. |
||||||
|
* |
||||||
|
* - Neither the name of the Eclipse Foundation, Inc. nor the |
||||||
|
* names of its contributors may be used to endorse or promote |
||||||
|
* products derived from this software without specific prior |
||||||
|
* written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||||
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
||||||
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||||||
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||||||
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
||||||
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.eclipse.jgit.pgm; |
||||||
|
|
||||||
|
import org.eclipse.jgit.nls.NLS; |
||||||
|
import org.eclipse.jgit.nls.TranslationBundle; |
||||||
|
|
||||||
|
/** |
||||||
|
* Translation bundle for JGit command line interface
|
||||||
|
*/ |
||||||
|
public class CLIText extends TranslationBundle { |
||||||
|
|
||||||
|
/** |
||||||
|
* @return an instance of this translation bundle |
||||||
|
*/ |
||||||
|
public static CLIText get() { |
||||||
|
return NLS.getBundleFor(CLIText.class); |
||||||
|
} |
||||||
|
|
||||||
|
/***/ public String IPZillaPasswordPrompt; |
||||||
|
/***/ public String authorInfo; |
||||||
|
/***/ public String averageMSPerRead; |
||||||
|
/***/ public String branchAlreadyExists; |
||||||
|
/***/ public String branchCreatedFrom; |
||||||
|
/***/ public String branchIsNotAnAncestorOfYourCurrentHEAD; |
||||||
|
/***/ public String branchNotFound; |
||||||
|
/***/ public String cacheTreePathInfo; |
||||||
|
/***/ public String cannotBeRenamed; |
||||||
|
/***/ public String cannotChekoutNoHeadsAdvertisedByRemote; |
||||||
|
/***/ public String cannotCreateCommand; |
||||||
|
/***/ public String cannotCreateOutputStream; |
||||||
|
/***/ public String cannotDeatchHEAD; |
||||||
|
/***/ public String cannotDeleteTheBranchWhichYouAreCurrentlyOn; |
||||||
|
/***/ public String cannotGuessLocalNameFrom; |
||||||
|
/***/ public String cannotLock; |
||||||
|
/***/ public String cannotReadBecause; |
||||||
|
/***/ public String cannotReadPackageInformation; |
||||||
|
/***/ public String cannotRenameDetachedHEAD; |
||||||
|
/***/ public String cannotResolve; |
||||||
|
/***/ public String cannotSetupConsole; |
||||||
|
/***/ public String cannotUseObjectsWithGlog; |
||||||
|
/***/ public String cannotWrite; |
||||||
|
/***/ public String cantFindGitDirectory; |
||||||
|
/***/ public String cantWrite; |
||||||
|
/***/ public String commitLabel; |
||||||
|
/***/ public String conflictingUsageOf_git_dir_andArguments; |
||||||
|
/***/ public String couldNotCreateBranch; |
||||||
|
/***/ public String dateInfo; |
||||||
|
/***/ public String deletedBranch; |
||||||
|
/***/ public String deletedRemoteBranch; |
||||||
|
/***/ public String doesNotExist; |
||||||
|
/***/ public String everythingUpToDate; |
||||||
|
/***/ public String expectedNumberOfbytes; |
||||||
|
/***/ public String exporting; |
||||||
|
/***/ public String failedToCommitIndex; |
||||||
|
/***/ public String failedToLockIndex; |
||||||
|
/***/ public String fatalError; |
||||||
|
/***/ public String fatalErrorTagExists; |
||||||
|
/***/ public String fatalThisProgramWillDestroyTheRepository; |
||||||
|
/***/ public String forcedUpdate; |
||||||
|
/***/ public String fromURI; |
||||||
|
/***/ public String initializedEmptyGitRepositoryIn; |
||||||
|
/***/ public String invalidHttpProxyOnlyHttpSupported; |
||||||
|
/***/ public String jgitVersion; |
||||||
|
/***/ public String listeningOn; |
||||||
|
/***/ public String metaVar_command; |
||||||
|
/***/ public String metaVar_commitish; |
||||||
|
/***/ public String metaVar_object; |
||||||
|
/***/ public String metaVar_paths; |
||||||
|
/***/ public String metaVar_refspec; |
||||||
|
/***/ public String metaVar_treeish; |
||||||
|
/***/ public String mostCommonlyUsedCommandsAre; |
||||||
|
/***/ public String needApprovalToDestroyCurrentRepository; |
||||||
|
/***/ public String noGitRepositoryConfigured; |
||||||
|
/***/ public String noSuchFile; |
||||||
|
/***/ public String noTREESectionInIndex; |
||||||
|
/***/ public String nonFastForward; |
||||||
|
/***/ public String notABranch; |
||||||
|
/***/ public String notACommit; |
||||||
|
/***/ public String notAGitRepository; |
||||||
|
/***/ public String notAJgitCommand; |
||||||
|
/***/ public String notARevision; |
||||||
|
/***/ public String notATagVersionIsRequired; |
||||||
|
/***/ public String notATree; |
||||||
|
/***/ public String notAValidRefName; |
||||||
|
/***/ public String notAnIndexFile; |
||||||
|
/***/ public String notAnObject; |
||||||
|
/***/ public String notFound; |
||||||
|
/***/ public String onlyOneMetaVarExpectedIn; |
||||||
|
/***/ public String pushTo; |
||||||
|
/***/ public String remoteMessage; |
||||||
|
/***/ public String remoteRefObjectChangedIsNotExpectedOne; |
||||||
|
/***/ public String remoteSideDoesNotSupportDeletingRefs; |
||||||
|
/***/ public String repaint; |
||||||
|
/***/ public String serviceNotSupported; |
||||||
|
/***/ public String skippingObject; |
||||||
|
/***/ public String timeInMilliSeconds; |
||||||
|
/***/ public String tooManyRefsGiven; |
||||||
|
/***/ public String unsupportedOperation; |
||||||
|
/***/ public String warningNoCommitGivenOnCommandLine; |
||||||
|
} |
@ -0,0 +1,8 @@ |
|||||||
|
authenticationRequired=Authentication Required |
||||||
|
author=Author |
||||||
|
date=Date |
||||||
|
enterUsernameAndPasswordFor=Enter username and password for |
||||||
|
mustBeSpecialTableModel=Must be special table model. |
||||||
|
password=Password: |
||||||
|
username=Username: |
||||||
|
warning=Warning |
@ -0,0 +1,69 @@ |
|||||||
|
/* |
||||||
|
* Copyright (C) 2010, Sasa Zivkov <sasa.zivkov@sap.com> |
||||||
|
* and other copyright owners as documented in the project's IP log. |
||||||
|
* |
||||||
|
* This program and the accompanying materials are made available |
||||||
|
* under the terms of the Eclipse Distribution License v1.0 which |
||||||
|
* accompanies this distribution, is reproduced below, and is |
||||||
|
* available at http://www.eclipse.org/org/documents/edl-v10.php
|
||||||
|
* |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or |
||||||
|
* without modification, are permitted provided that the following |
||||||
|
* conditions are met: |
||||||
|
* |
||||||
|
* - Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* |
||||||
|
* - Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following |
||||||
|
* disclaimer in the documentation and/or other materials provided |
||||||
|
* with the distribution. |
||||||
|
* |
||||||
|
* - Neither the name of the Eclipse Foundation, Inc. nor the |
||||||
|
* names of its contributors may be used to endorse or promote |
||||||
|
* products derived from this software without specific prior |
||||||
|
* written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
||||||
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
||||||
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||||||
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||||
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||||||
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||||
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
||||||
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||||
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
||||||
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
*/ |
||||||
|
|
||||||
|
package org.eclipse.jgit.awtui; |
||||||
|
|
||||||
|
import org.eclipse.jgit.nls.NLS; |
||||||
|
import org.eclipse.jgit.nls.TranslationBundle; |
||||||
|
|
||||||
|
/** |
||||||
|
* Translation bundle for JGit UI |
||||||
|
*/ |
||||||
|
public class UIText extends TranslationBundle { |
||||||
|
|
||||||
|
/** |
||||||
|
* @return an instance of this translation bundle |
||||||
|
*/ |
||||||
|
public static UIText get() { |
||||||
|
return NLS.getBundleFor(UIText.class); |
||||||
|
} |
||||||
|
|
||||||
|
/***/ public String authenticationRequired; |
||||||
|
/***/ public String author; |
||||||
|
/***/ public String date; |
||||||
|
/***/ public String enterUsernameAndPasswordFor; |
||||||
|
/***/ public String mustBeSpecialTableModel; |
||||||
|
/***/ public String password; |
||||||
|
/***/ public String username; |
||||||
|
/***/ public String warning; |
||||||
|
} |
@ -0,0 +1,360 @@ |
|||||||
|
DIRCChecksumMismatch=DIRC checksum mismatch |
||||||
|
DIRCExtensionIsTooLargeAt=DIRC extension {0} is too large at {1} bytes. |
||||||
|
DIRCExtensionNotSupportedByThisVersion=DIRC extension {0} not supported by this version. |
||||||
|
DIRCHasTooManyEntries=DIRC has too many entries. |
||||||
|
JRELacksMD5Implementation=JRE lacks MD5 implementation |
||||||
|
URINotSupported=URI not supported: {0} |
||||||
|
URLNotFound={0} not found |
||||||
|
aNewObjectIdIsRequired=A NewObjectId is required. |
||||||
|
advertisementCameBefore=advertisement of {0}^{} came before {1} |
||||||
|
advertisementOfCameBefore=advertisement of {0}^{} came before {1} |
||||||
|
amazonS3ActionFailed={0} of '{1}' failed: {2} {3} |
||||||
|
amazonS3ActionFailedGivingUp={0} of '{1}' failed: Giving up after {2} attempts. |
||||||
|
anExceptionOccurredWhileTryingToAddTheIdOfHEAD=An exception occurred while trying to add the Id of HEAD |
||||||
|
anSSHSessionHasBeenAlreadyCreated=An SSH session has been already created |
||||||
|
atLeastOnePathIsRequired=At least one path is required. |
||||||
|
atLeastTwoFiltersNeeded=At least two filters needed. |
||||||
|
badBase64InputCharacterAt=Bad Base64 input character at {0} : {1} (decimal) |
||||||
|
badEntryDelimiter=Bad entry delimiter |
||||||
|
badEntryName=Bad entry name: {0} |
||||||
|
badEscape=Bad escape: {0} |
||||||
|
badGroupHeader=Bad group header |
||||||
|
badObjectType=Bad object type: {0} |
||||||
|
badSectionEntry=Bad section entry: {0} |
||||||
|
base64InputNotProperlyPadded=Base64 input not properly padded. |
||||||
|
baseLengthIncorrect=base length incorrect |
||||||
|
blobNotFound=Blob not found: {0} |
||||||
|
blobNotFoundForPath=Blob not found: {0} for path: {1} |
||||||
|
cannotBeCombined=Cannot be combined. |
||||||
|
cannotCombineTreeFilterWithRevFilter=Cannot combine TreeFilter {0} with RefFilter {1}. |
||||||
|
cannotCommitWriteTo=Cannot commit write to {0} |
||||||
|
cannotConnectPipes=cannot connect pipes |
||||||
|
cannotConvertScriptToText=Cannot convert script to text |
||||||
|
cannotCreateConfig=cannot create config |
||||||
|
cannotCreateDirectory=Cannot create directory {0} |
||||||
|
cannotCreateHEAD=cannot create HEAD |
||||||
|
cannotDeleteFile=Cannot delete file: {0} |
||||||
|
cannotDeleteStaleTrackingRef2=Cannot delete stale tracking ref {0}: {1} |
||||||
|
cannotDeleteStaleTrackingRef=Cannot delete stale tracking ref {0} |
||||||
|
cannotDetermineProxyFor=Cannot determine proxy for {0} |
||||||
|
cannotDownload=Cannot download {0} |
||||||
|
cannotExecute=cannot execute: {0} |
||||||
|
cannotGet=Cannot get {0} |
||||||
|
cannotListRefs=cannot list refs |
||||||
|
cannotLock=Cannot lock {0} |
||||||
|
cannotLockFile=Cannot lock file {0} |
||||||
|
cannotLockPackIn=Cannot lock pack in {0} |
||||||
|
cannotMatchOnEmptyString=Cannot match on empty string. |
||||||
|
cannotMoveIndexTo=Cannot move index to {0} |
||||||
|
cannotMovePackTo=Cannot move pack to {0} |
||||||
|
cannotOpenService=cannot open {0} |
||||||
|
cannotParseGitURIish=Cannot parse Git URI-ish |
||||||
|
cannotRead=Cannot read {0} |
||||||
|
cannotReadBlob=Cannot read blob {0} |
||||||
|
cannotReadCommit=Cannot read commit {0} |
||||||
|
cannotReadFile=Cannot read file {0} |
||||||
|
cannotReadHEAD=cannot read HEAD: {0} {1} |
||||||
|
cannotReadObject=Cannot read object |
||||||
|
cannotReadTree=Cannot read tree {0} |
||||||
|
cannotResolveLocalTrackingRefForUpdating=Cannot resolve local tracking ref {0} for updating. |
||||||
|
cannotStoreObjects=cannot store objects |
||||||
|
cannotUnloadAModifiedTree=Cannot unload a modified tree. |
||||||
|
cannotWorkWithOtherStagesThanZeroRightNow=Cannot work with other stages than zero right now. Won't write corrupt index. |
||||||
|
cantFindObjectInReversePackIndexForTheSpecifiedOffset=Can't find object in (reverse) pack index for the specified offset {0} |
||||||
|
cantPassMeATree=Can't pass me a tree! |
||||||
|
channelMustBeInRange0_255=channel {0} must be in range [0, 255] |
||||||
|
characterClassIsNotSupported=The character class {0} is not supported. |
||||||
|
checkoutConflictWithFile=Checkout conflict with file: {0} |
||||||
|
checkoutConflictWithFiles=Checkout conflict with files: {0} |
||||||
|
classCastNotA=Not a {0} |
||||||
|
collisionOn=Collision on {0} |
||||||
|
commandWasCalledInTheWrongState=Command {0} was called in the wrong state |
||||||
|
commitAlreadyExists=exists {0} |
||||||
|
commitMessageNotSpecified=commit message not specified |
||||||
|
commitOnRepoWithoutHEADCurrentlyNotSupported=Commit on repo without HEAD currently not supported |
||||||
|
compressingObjects=Compressing objects |
||||||
|
connectionFailed=connection failed |
||||||
|
connectionTimeOut=Connection time out: {0} |
||||||
|
contextMustBeNonNegative=context must be >= 0 |
||||||
|
corruptObjectBadStream=bad stream |
||||||
|
corruptObjectBadStreamCorruptHeader=bad stream, corrupt header |
||||||
|
corruptObjectGarbageAfterSize=garbage after size |
||||||
|
corruptObjectIncorrectLength=incorrect length |
||||||
|
corruptObjectInvalidEntryMode=invalid entry mode |
||||||
|
corruptObjectInvalidMode2=invalid mode {0} |
||||||
|
corruptObjectInvalidMode3=invalid mode {0} for {1} '{2}' in {3}. |
||||||
|
corruptObjectInvalidMode=invalid mode |
||||||
|
corruptObjectInvalidType2=invalid type {0} |
||||||
|
corruptObjectInvalidType=invalid type |
||||||
|
corruptObjectMalformedHeader=malformed header: {0} |
||||||
|
corruptObjectNegativeSize=negative size |
||||||
|
corruptObjectNoAuthor=no author |
||||||
|
corruptObjectNoCommitter=no committer |
||||||
|
corruptObjectNoHeader=no header |
||||||
|
corruptObjectNoObject=no object |
||||||
|
corruptObjectNoTagName=no tag name |
||||||
|
corruptObjectNoTaggerBadHeader=no tagger/bad header |
||||||
|
corruptObjectNoTaggerHeader=no tagger header |
||||||
|
corruptObjectNoType=no type |
||||||
|
corruptObjectNotree=no tree |
||||||
|
corruptObjectPackfileChecksumIncorrect=Packfile checksum incorrect. |
||||||
|
corruptionDetectedReReadingAt=Corruption detected re-reading at {0} |
||||||
|
couldNotDeleteLockFileShouldNotHappen=Could not delete lock file. Should not happen |
||||||
|
couldNotDeleteTemporaryIndexFileShouldNotHappen=Could not delete temporary index file. Should not happen |
||||||
|
couldNotLockHEAD=Could not lock HEAD |
||||||
|
couldNotReadIndexInOneGo=Could not read index in one go, only {0} out of {1} read |
||||||
|
couldNotRenameDeleteOldIndex=Could not rename delete old index |
||||||
|
couldNotRenameTemporaryIndexFileToIndex=Could not rename temporary index file to index |
||||||
|
couldNotURLEncodeToUTF8=Could not URL encode to UTF-8 |
||||||
|
couldNotWriteFile=Could not write file {0} |
||||||
|
countingObjects=Counting objects |
||||||
|
creatingDeltasIsNotImplemented=creating deltas is not implemented |
||||||
|
daemonAlreadyRunning=Daemon already running |
||||||
|
deletingNotSupported=Deleting {0} not supported. |
||||||
|
destinationIsNotAWildcard=Destination is not a wildcard. |
||||||
|
dirCacheDoesNotHaveABackingFile=DirCache does not have a backing file |
||||||
|
dirCacheFileIsNotLocked=DirCache {0} not locked |
||||||
|
dirCacheIsNotLocked=DirCache is not locked |
||||||
|
doesNotHandleMode=Does not handle mode {0} ({1}) |
||||||
|
downloadCancelled=Download cancelled |
||||||
|
downloadCancelledDuringIndexing=Download cancelled during indexing |
||||||
|
duplicateAdvertisementsOf=duplicate advertisements of {0} |
||||||
|
duplicateRef=Duplicate ref: {0} |
||||||
|
duplicateRemoteRefUpdateIsIllegal=Duplicate remote ref update is illegal. Affected remote name: {0} |
||||||
|
duplicateStagesNotAllowed=Duplicate stages not allowed |
||||||
|
eitherGIT_DIRorGIT_WORK_TREEmustBePassed=Either GIT_DIR or GIT_WORK_TREE must be passed to Repository constructor |
||||||
|
emptyPathNotPermitted=Empty path not permitted. |
||||||
|
encryptionError=Encryption error: {0} |
||||||
|
endOfFileInEscape=End of file in escape |
||||||
|
entryNotFoundByPath=Entry not found by path: {0} |
||||||
|
errorDecodingFromFile=Error decoding from file {0} |
||||||
|
errorEncodingFromFile=Error encoding from file {0} |
||||||
|
errorInBase64CodeReadingStream=Error in Base64 code reading stream. |
||||||
|
errorInPackedRefs=error in packed-refs |
||||||
|
errorInvalidProtocolWantedOldNewRef=error: invalid protocol: wanted 'old new ref' |
||||||
|
errorListing=Error listing {0} |
||||||
|
errorOccurredDuringUnpackingOnTheRemoteEnd=error occurred during unpacking on the remote end: {0} |
||||||
|
errorReadingInfoRefs=error reading info/refs |
||||||
|
exceptionCaughtDuringExecutionOfCommitCommand=Exception caught during execution of commit command |
||||||
|
exceptionOccuredDuringAddingOfOptionToALogCommand=Exception occured during adding of {0} as option to a Log command |
||||||
|
expectedACKNAKFoundEOF=Expected ACK/NAK, found EOF |
||||||
|
expectedACKNAKGot=Expected ACK/NAK, got: {0} |
||||||
|
expectedBooleanStringValue=Expected boolean string value |
||||||
|
expectedCharacterEncodingGuesses=Expected {0} character encoding guesses |
||||||
|
expectedEOFReceived=expected EOF; received '{0}' instead |
||||||
|
expectedGot=expected '{0}', got '{1}' |
||||||
|
expectedPktLineWithService=expected pkt-line with '# service=-', got '{0}' |
||||||
|
expectedReceivedContentType=expected Content-Type {0}; received Content-Type {1} |
||||||
|
expectedReportForRefNotReceived={0}: expected report for ref {1} not received |
||||||
|
failedUpdatingRefs=failed updating refs |
||||||
|
failureDueToOneOfTheFollowing=Failure due to one of the following: |
||||||
|
failureUpdatingFETCH_HEAD=Failure updating FETCH_HEAD: {0} |
||||||
|
failureUpdatingTrackingRef=Failure updating tracking ref {0}: {1} |
||||||
|
fileCannotBeDeleted=File cannot be deleted: {0} |
||||||
|
fileIsTooBigForThisConvenienceMethod=File is too big for this convenience method ({0} bytes). |
||||||
|
fileIsTooLarge=File is too large: {0} |
||||||
|
fileModeNotSetForPath=FileMode not set for path {0} |
||||||
|
flagIsDisposed={0} is disposed. |
||||||
|
flagNotFromThis={0} not from this. |
||||||
|
flagsAlreadyCreated={0} flags already created. |
||||||
|
funnyRefname=funny refname |
||||||
|
hugeIndexesAreNotSupportedByJgitYet=Huge indexes are not supported by jgit, yet |
||||||
|
hunkBelongsToAnotherFile=Hunk belongs to another file |
||||||
|
hunkDisconnectedFromFile=Hunk disconnected from file |
||||||
|
hunkHeaderDoesNotMatchBodyLineCountOf=Hunk header {0} does not match body line count of {1} |
||||||
|
illegalArgumentNotA=Not {0} |
||||||
|
illegalStateExists=exists {0} |
||||||
|
improperlyPaddedBase64Input=Improperly padded Base64 input. |
||||||
|
inMemoryBufferLimitExceeded=In-memory buffer limit exceeded |
||||||
|
incorrectHashFor=Incorrect hash for {0}; computed {1} as a {2} from {3} bytes. |
||||||
|
incorrectOBJECT_ID_LENGTH=Incorrect OBJECT_ID_LENGTH. |
||||||
|
incorrectObjectType_COMMITnorTREEnorBLOBnorTAG=COMMIT nor TREE nor BLOB nor TAG |
||||||
|
indexFileIsInUse=Index file is in use |
||||||
|
indexFileIsTooLargeForJgit=Index file is too large for jgit |
||||||
|
indexSignatureIsInvalid=Index signature is invalid: {0} |
||||||
|
integerValueOutOfRange=Integer value {0}.{1} out of range |
||||||
|
internalRevisionError=internal revision error |
||||||
|
interruptedWriting=Interrupted writing {0} |
||||||
|
invalidAdvertisementOf=invalid advertisement of {0} |
||||||
|
invalidAncestryLength=Invalid ancestry length |
||||||
|
invalidBooleanValue=Invalid boolean value: {0}.{1}={2} |
||||||
|
invalidChannel=Invalid channel {0} |
||||||
|
invalidCharacterInBase64Data=Invalid character in Base64 data. |
||||||
|
invalidCommitParentNumber=Invalid commit parent number |
||||||
|
invalidEncryption=Invalid encryption |
||||||
|
invalidGitType=invalid git type: {0} |
||||||
|
invalidId=Invalid id {0} |
||||||
|
invalidIdLength=Invalid id length {0}; should be {1} |
||||||
|
invalidIntegerValue=Invalid integer value: {0}.{1}={2} |
||||||
|
invalidKey=Invalid key: {0} |
||||||
|
invalidLineInConfigFile=Invalid line in config file |
||||||
|
invalidModeFor=Invalid mode {0} for {1} {2} in {3}. |
||||||
|
invalidModeForPath=Invalid mode {0} for path {1} |
||||||
|
invalidObject=Invalid {0} {1}:{2} |
||||||
|
invalidOldIdSent=invalid old id sent |
||||||
|
invalidPacketLineHeader=Invalid packet line header: {0} |
||||||
|
invalidPath=Invalid path: {0} |
||||||
|
invalidRefName=Invalid ref name: {0} |
||||||
|
invalidStageForPath=Invalid stage {0} for path {1} |
||||||
|
invalidTagOption=Invalid tag option: {0} |
||||||
|
invalidTimeout=Invalid timeout: {0} |
||||||
|
invalidURL=Invalid URL {0} |
||||||
|
invalidWildcards=Invalid wildcards {0} |
||||||
|
invalidWindowSize=Invalid window size |
||||||
|
isAStaticFlagAndHasNorevWalkInstance={0} is a static flag and has no RevWalk instance |
||||||
|
kNotInRange=k {0} not in {1} - {2} |
||||||
|
lengthExceedsMaximumArraySize=Length exceeds maximum array size |
||||||
|
listingAlternates=Listing alternates |
||||||
|
localObjectsIncomplete=Local objects incomplete. |
||||||
|
localRefIsMissingObjects=Local ref {0} is missing object(s). |
||||||
|
lockCountMustBeGreaterOrEqual1=lockCount must be >= 1 |
||||||
|
lockError=lock error: {0} |
||||||
|
lockOnNotClosed=Lock on {0} not closed. |
||||||
|
lockOnNotHeld=Lock on {0} not held. |
||||||
|
malformedpersonIdentString=Malformed PersonIdent string (no < was found): {0} |
||||||
|
mergeStrategyAlreadyExistsAsDefault=Merge strategy "{0}" already exists as a default strategy |
||||||
|
missingAccesskey=Missing accesskey. |
||||||
|
missingForwardImageInGITBinaryPatch=Missing forward-image in GIT binary patch |
||||||
|
missingObject=Missing {0} {1} |
||||||
|
missingPrerequisiteCommits=missing prerequisite commits: |
||||||
|
missingSecretkey=Missing secretkey. |
||||||
|
mixedStagesNotAllowed=Mixed stages not allowed |
||||||
|
multipleMergeBasesFor=Multiple merge bases for:\n {0}\n {1} found:\n {2}\n {3} |
||||||
|
need2Arguments=Need 2 arguments |
||||||
|
needPackOut=need packOut |
||||||
|
needsAtLeastOneEntry=Needs at least one entry |
||||||
|
needsWorkdir=Needs workdir |
||||||
|
newlineInQuotesNotAllowed=Newline in quotes not allowed |
||||||
|
noApplyInDelete=No apply in delete |
||||||
|
noClosingBracket=No closing {0} found for {1} at index {2}. |
||||||
|
noHEADExistsAndNoExplicitStartingRevisionWasSpecified=No HEAD exists and no explicit starting revision was specified |
||||||
|
noHMACsupport=No {0} support: {1} |
||||||
|
noSuchRef=no such ref |
||||||
|
noXMLParserAvailable=No XML parser available. |
||||||
|
notABoolean=Not a boolean: {0} |
||||||
|
notABundle=not a bundle |
||||||
|
notADIRCFile=Not a DIRC file. |
||||||
|
notAGitDirectory=not a git directory |
||||||
|
notAPACKFile=Not a PACK file. |
||||||
|
notARef=Not a ref: {0}: {1} |
||||||
|
notASCIIString=Not ASCII string: {0} |
||||||
|
notAValidPack=Not a valid pack {0} |
||||||
|
notFound=not found. |
||||||
|
notValid={0} not valid |
||||||
|
nothingToFetch=Nothing to fetch. |
||||||
|
nothingToPush=Nothing to push. |
||||||
|
objectAtHasBadZlibStream=Object at {0} in {1} has bad zlib stream |
||||||
|
objectAtPathDoesNotHaveId=Object at path "{0}" does not have an id assigned. All object ids must be assigned prior to writing a tree. |
||||||
|
objectIsCorrupt=Object {0} is corrupt: {1} |
||||||
|
objectIsNotA=Object {0} is not a {1}. |
||||||
|
objectNotFoundIn=Object {0} not found in {1}. |
||||||
|
offsetWrittenDeltaBaseForObjectNotFoundInAPack=Offset-written delta base for object not found in a pack |
||||||
|
onlyOneFetchSupported=Only one fetch supported |
||||||
|
onlyOneOperationCallPerConnectionIsSupported=Only one operation call per connection is supported. |
||||||
|
openFilesMustBeAtLeast1=Open files must be >= 1 |
||||||
|
openingConnection=Opening connection |
||||||
|
outputHasAlreadyBeenStarted=Output has already been started. |
||||||
|
packChecksumMismatch=Pack checksum mismatch |
||||||
|
packCorruptedWhileWritingToFilesystem=Pack corrupted while writing to filesystem |
||||||
|
packDoesNotMatchIndex=Pack {0} does not match index |
||||||
|
packFileInvalid=Pack file invalid: {0} |
||||||
|
packHasUnresolvedDeltas=pack has unresolved deltas |
||||||
|
packObjectCountMismatch=Pack object count mismatch: pack {0} index {1}: {2} |
||||||
|
packTooLargeForIndexVersion1=Pack too large for index version 1 |
||||||
|
packetSizeMustBeAtLeast=packet size {0} must be >= {1} |
||||||
|
packetSizeMustBeAtMost=packet size {0} must be <= {1} |
||||||
|
packfileCorruptionDetected=Packfile corruption detected: {0} |
||||||
|
packfileIsTruncated=Packfile is truncated. |
||||||
|
packingCancelledDuringObjectsWriting=Packing cancelled during objects writing |
||||||
|
pathIsNotInWorkingDir=Path is not in working dir |
||||||
|
peeledLineBeforeRef=Peeled line before ref. |
||||||
|
peeledLineBeforeRef=Peeled line before ref. |
||||||
|
peerDidNotSupplyACompleteObjectGraph=peer did not supply a complete object graph |
||||||
|
prefixRemote=remote: |
||||||
|
problemWithResolvingPushRefSpecsLocally=Problem with resolving push ref specs locally: {0} |
||||||
|
progressMonUploading=Uploading {0} |
||||||
|
propertyIsAlreadyNonNull=Property is already non null |
||||||
|
pushCancelled=push cancelled |
||||||
|
pushIsNotSupportedForBundleTransport=Push is not supported for bundle transport |
||||||
|
pushNotPermitted=push not permitted |
||||||
|
rawLogMessageDoesNotParseAsLogEntry=Raw log message does not parse as log entry |
||||||
|
readTimedOut=Read timed out |
||||||
|
readingObjectsFromLocalRepositoryFailed=reading objects from local repository failed: {0} |
||||||
|
receivingObjects=Receiving objects |
||||||
|
refUpdateReturnCodeWas=RefUpdate return code was: {0} |
||||||
|
reflogsNotYetSupportedByRevisionParser=reflogs not yet supported by revision parser |
||||||
|
remoteConfigHasNoURIAssociated=Remote config "{0}" has no URIs associated |
||||||
|
remoteDoesNotHaveSpec=Remote does not have {0} available for fetch. |
||||||
|
remoteDoesNotSupportSmartHTTPPush=remote does not support smart HTTP push |
||||||
|
remoteHungUpUnexpectedly=remote hung up unexpectedly |
||||||
|
remoteNameCantBeNull=Remote name can't be null. |
||||||
|
repositoryAlreadyExists=Repository already exists: {0} |
||||||
|
repositoryNotFound=repository not found: {0} |
||||||
|
requiredHashFunctionNotAvailable=Required hash function {0} not available. |
||||||
|
resolvingDeltas=Resolving deltas |
||||||
|
serviceNotPermitted={0} not permitted |
||||||
|
shortCompressedStreamAt=Short compressed stream at {0} |
||||||
|
shortReadOfBlock=Short read of block. |
||||||
|
shortReadOfOptionalDIRCExtensionExpectedAnotherBytes=Short read of optional DIRC extension {0}; expected another {1} bytes within the section. |
||||||
|
shortSkipOfBlock=Short skip of block. |
||||||
|
smartHTTPPushDisabled=smart HTTP push disabled |
||||||
|
sourceDestinationMustMatch=Source/Destination must match. |
||||||
|
sourceIsNotAWildcard=Source is not a wildcard. |
||||||
|
sourceRefDoesntResolveToAnyObject=Source ref {0} doesn't resolve to any object. |
||||||
|
sourceRefNotSpecifiedForRefspec=Source ref not specified for refspec: {0} |
||||||
|
staleRevFlagsOn=Stale RevFlags on {0} |
||||||
|
startingReadStageWithoutWrittenRequestDataPendingIsNotSupported=Starting read stage without written request data pending is not supported |
||||||
|
statelessRPCRequiresOptionToBeEnabled=stateless RPC requires {0} to be enabled |
||||||
|
symlinkCannotBeWrittenAsTheLinkTarget=Symlink "{0}" cannot be written as the link target cannot be read from within Java. |
||||||
|
tSizeMustBeGreaterOrEqual1=tSize must be >= 1 |
||||||
|
theFactoryMustNotBeNull=The factory must not be null |
||||||
|
timerAlreadyTerminated=Timer already terminated |
||||||
|
topologicalSortRequired=Topological sort required. |
||||||
|
transportExceptionBadRef=Empty ref: {0}: {1} |
||||||
|
transportExceptionEmptyRef=Empty ref: {0} |
||||||
|
transportExceptionInvalid=Invalid {0} {1}:{2} |
||||||
|
transportExceptionMissingAssumed=Missing assumed {0} |
||||||
|
transportExceptionReadRef=read {0} |
||||||
|
treeEntryAlreadyExists=Tree entry "{0}" already exists. |
||||||
|
treeIteratorDoesNotSupportRemove=TreeIterator does not support remove() |
||||||
|
truncatedHunkLinesMissingForAncestor=Truncated hunk, at least {0} lines missing for ancestor {1} |
||||||
|
truncatedHunkNewLinesMissing=Truncated hunk, at least {0} new lines is missing |
||||||
|
truncatedHunkOldLinesMissing=Truncated hunk, at least {0} old lines is missing |
||||||
|
unableToCheckConnectivity=Unable to check connectivity. |
||||||
|
unableToLockTag=Unable to lock tag {0} |
||||||
|
unableToStore=Unable to store {0}. |
||||||
|
unableToWrite=Unable to write {0} |
||||||
|
unencodeableFile=Unencodeable file: {0} |
||||||
|
unexpectedEndOfConfigFile=Unexpected end of config file |
||||||
|
unexpectedHunkTrailer=Unexpected hunk trailer |
||||||
|
unexpectedOddResult=odd: {0} + {1} - {2} |
||||||
|
unexpectedRefReport={0}: unexpected ref report: {1} |
||||||
|
unexpectedReportLine2={0} unexpected report line: {1} |
||||||
|
unexpectedReportLine=unexpected report line: {0} |
||||||
|
unknownDIRCVersion=Unknown DIRC version {0} |
||||||
|
unknownHost=unknown host |
||||||
|
unknownIndexVersionOrCorruptIndex=Unknown index version (or corrupt index): {0} |
||||||
|
unknownObjectType=Unknown object type {0}. |
||||||
|
unknownRepositoryFormat2=Unknown repository format "{0}"; expected "0". |
||||||
|
unknownRepositoryFormat=Unknown repository format |
||||||
|
unmergedPath=Unmerged path: {0} |
||||||
|
unpackError=unpack error {0} |
||||||
|
unreadablePackIndex=Unreadable pack index: {0} |
||||||
|
unrecognizedRef=Unrecognized ref: {0} |
||||||
|
unsupportedCommand0=unsupported command 0 |
||||||
|
unsupportedEncryptionAlgorithm=Unsupported encryption algorithm: {0} |
||||||
|
unsupportedEncryptionVersion=Unsupported encryption version: {0} |
||||||
|
unsupportedOperationNotAddAtEnd=Not add-at-end: {0} |
||||||
|
unsupportedPackIndexVersion=Unsupported pack index version {0} |
||||||
|
unsupportedPackVersion=Unsupported pack version {0}. |
||||||
|
updatingRefFailed=Updating the ref {0} to {1} failed. ReturnCode from RefUpdate.update() was {2} |
||||||
|
userConfigFileInvalid=User config file {0} invalid {1} |
||||||
|
walkFailure=Walk failure. |
||||||
|
windowSizeMustBeLesserThanLimit=Window size must be < limit |
||||||
|
windowSizeMustBePowerOf2=Window size must be power of 2 |
||||||
|
writeTimedOut=Write timed out |
||||||
|
writerAlreadyInitialized=Writer already initialized |
||||||
|
writingNotPermitted=Writing not permitted |
||||||
|
writingNotSupported=Writing {0} not supported. |
||||||
|
writingObjects=Writing objects |
||||||
|
wrongDecompressedLength=wrong decompressed length |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue