Skip to content

Commit

Permalink
Fixed small localization syntax issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vswe committed Jun 23, 2014
1 parent 9af4f2b commit 281a305
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ buildscript {

apply plugin: 'forge'

version = "2.0.0.dev"
version = "2.0.0.b12"
group= "vswe.stevescarts" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "StevesCarts"

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/vswe/stevescarts/Helpers/GeneratedInfo.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package vswe.stevescarts.Helpers;

public class GeneratedInfo {
public static final String version = /*@v*/"2.0.0.b11";
public static final boolean inDev = /*@d*/true;
public static final String version = /*@v*/"2.0.0.b12";
public static final boolean inDev = /*@d*/false;
}
2 changes: 1 addition & 1 deletion src/main/resources/assets/stevescarts/lang/en_US.lang
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ info.SC2:impossibleCombinationError=The combination of module types of the modul
info.SC2:complexityOverloadError=[%1] is too complex for this hull.
info.SC2:missingParentError=[%1] requires [%2] to work!
info.SC2:presentNemesisError=[%1] won't work with [%2]
info.SC2:presentDuplicateError[%1] is not allowed to be added twice.
info.SC2:presentDuplicateError=[%1] is not allowed to be added twice.
info.SC2:sideClashError=[%1] and [%2] will clash at the [%3]
# need beta 3 for these ones to show up (remove this note)
info.SC2:toolUnbreakable=Unbreakable
Expand Down

0 comments on commit 281a305

Please sign in to comment.