Skip to content

Commit

Permalink
fix: Finally it translates itself.
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Mar 19, 2021
1 parent 42a46f7 commit 14fafe0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions scripts/lazJSONViewer-win64-win32.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Laz JSON Viewer"
#define MyAppVersion "0.1.9.37"
#define MyAppVersion "0.1.9.38"
#define MyAppPublisher "Gustavo Carreno"
#define MyAppURL "https://github.com/gcarreno/laz-JSON-Viewer"
#define MyAppExeName "lazJSONViewer.exe"
Expand Down Expand Up @@ -37,15 +37,15 @@ ArchitecturesInstallIn64BitMode=x64

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
;Name: "portuguese"; MessagesFile: "compiler:Languages\Portuguese.isl"
Name: "portuguese"; MessagesFile: "compiler:Languages\Portuguese.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "D:\Programming\laz-JSON-Viewer\bin\x86_64\win64\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode
Source: "D:\Programming\laz-JSON-Viewer\bin\i386\win32\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode
Source: "D:\Programming\laz-JSON-Viewer\src\i18n\*.po"; DestDir: "{app}\i18n"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "D:\Programming\laz-JSON-Viewer\src\locale\*.po"; DestDir: "{app}\locale"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Registry]
Expand Down
4 changes: 2 additions & 2 deletions src/application/ljv.application.version.pas
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
interface

const
cVersion = '0.1.9.37';
cVersion = '0.1.9.38';
cVersionMajor = 0;
cVersionMinor = 1;
cVersionRevision = 9;
cVersionBuild = 37;
cVersionBuild = 38;

implementation

Expand Down
3 changes: 1 addition & 2 deletions src/forms/ljv.forms.main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ interface
, SynHighlighterJScript
, fpjson
, VirtualTrees
//, DefaultTranslator
//, LCLTranslator
, DefaultTranslator
;

type
Expand Down
4 changes: 2 additions & 2 deletions src/lazJSONViewer.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
</General>
<i18n>
<EnableI18N Value="True"/>
<OutDir Value="i18n"/>
<OutDir Value="locale"/>
</i18n>
<VersionInfo>
<UseVersionInfo Value="True"/>
<MinorVersionNr Value="1"/>
<RevisionNr Value="9"/>
<BuildNr Value="37"/>
<BuildNr Value="38"/>
<Language Value="0809"/>
</VersionInfo>
<BuildModes Count="3">
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 14fafe0

Please sign in to comment.