-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from grizeldi/master
Moved strings from codechecks to bundle.properties
- Loading branch information
Showing
5 changed files
with
36 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
UpdateHint.display-name=Updating is not needed in jME3, check your update order if you need to call this. | ||
UpdateHint.id=Update States / Bound | ||
UpdateHint.description=Checks for calls to updateGeometricState(), updateLogicalState() and updateModelBound(). | ||
UpdateHint.fix-text=Remove this call | ||
TempVarsHint.display-name=TempVars might not be released | ||
TempVarsHint.id=TempVars release check | ||
TempVarsHint.description=Checks for calls TempVars.get() and search for correspondinng release() call | ||
TempVarsHint.fix-text=Add a release() call at the end of the method | ||
ReadOnlyPrimitiveHint.display-name=This primitive is read only and should not be modified! | ||
ReadOnlyPrimitiveHint.id=ReadOnly Primitives | ||
ReadOnlyPrimitiveHint.description=Checks for modifications to readonly primitives. (getLocalTranslation().set()) | ||
ReadOnlyPrimitiveHint.fix-text=Remove this call | ||
InternalMethodHint.display-name=You should not call this method, its for internal use only! | ||
InternalMethodHint.id=Internal Methods | ||
InternalMethodHint.description=Checks for calls to internal methods. | ||
InternalMethodHint.fix-text=Remove this call |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters