Skip to content

Commit

Permalink
chore: Copyright Headers addition
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Mar 11, 2021
1 parent 34a9620 commit 1eda22f
Show file tree
Hide file tree
Showing 8 changed files with 201 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/application/ljv.application.version.pas
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{ Contains Application.Version
This file is part of laz-JSON-Viewer
Copyright (c) 2021 Gustavo Carreno <guscarreno@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
3 changes: 2 additions & 1 deletion src/forms/ljv.forms.main.lfm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ object frmMain: TfrmMain
OnDestroy = FormDestroy
OnDropFiles = FormDropFiles
SessionProperties = 'Top;Left;Height;Width;WindowState'
LCLVersion = '2.1.0.0'
object psMain: TPairSplitter
Cursor = crDefault
Left = 224
Expand Down Expand Up @@ -38,7 +39,7 @@ object frmMain: TfrmMain
Header.Columns = <
item
Position = 0
Width = 398
Width = 400
end>
Header.Options = [hoAutoResize, hoColumnResize, hoDrag, hoShowSortGlyphs]
TabOrder = 0
Expand Down
7 changes: 6 additions & 1 deletion src/forms/ljv.forms.main.pas
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{ Implements Forms.Main
This file is part of laz-JSON-Viewer
Copyright (c) 2021 Gustavo Carreno <guscarreno@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -35,7 +37,10 @@ interface
, Dialogs
, ExtCtrls
, StdCtrls
, PairSplitter, JSONPropStorage, ActnList, StdActns
, PairSplitter
, JSONPropStorage
, ActnList
, StdActns
, fpjson
, VirtualTrees
;
Expand Down
181 changes: 181 additions & 0 deletions src/i18n/lazJSONViewer.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"

#: ljv.forms.main.rsbytes
msgid " B"
msgstr ""

#: ljv.forms.main.rscaptionpath
msgid "Path"
msgstr ""

#: ljv.forms.main.rscaptionvalue
msgid "Value"
msgstr ""

#: ljv.forms.main.rsformcaption
msgid "JSON Viewer v%s"
msgstr ""

#: ljv.forms.main.rsformcaptionfile
msgid "JSON Viewer (%s) v%s"
msgstr ""

#: ljv.forms.main.rsgigabytes
msgid " GB"
msgstr ""

#: ljv.forms.main.rskilobytes
msgid " KB"
msgstr ""

#: ljv.forms.main.rslabelbinary
msgid "Binary"
msgstr ""

#: ljv.forms.main.rslabelbytes
msgid "Bytes"
msgstr ""

#: ljv.forms.main.rslabelcountarray
msgid "Items: %d"
msgstr ""

#: ljv.forms.main.rslabelcountempty
msgid "Member Count"
msgstr ""

#: ljv.forms.main.rslabelcountna
msgid "N/A"
msgstr ""

#: ljv.forms.main.rslabelcountobject
msgid "Members: %d"
msgstr ""

#: ljv.forms.main.rslabeldatetime
msgid "Date"
msgstr ""

#: ljv.forms.main.rslabelformated
msgid "Formated"
msgstr ""

#: ljv.forms.main.rslabelhexadecimal
msgid "Hexadecimal"
msgstr ""

#: ljv.forms.main.rslabelnamearrayitem
msgid "Item: %d"
msgstr ""

#: ljv.forms.main.rslabelnameempty
msgid "Node Name/Index"
msgstr ""

#: ljv.forms.main.rslabelnamename
msgid "Name: \"%s\""
msgstr ""

#: ljv.forms.main.rslabelscientific
msgid "Scientific"
msgstr ""

#: ljv.forms.main.rslabeltype
msgid "Type: %s"
msgstr ""

#: ljv.forms.main.rslabeltypeempty
msgid "Node Type"
msgstr ""

#: ljv.forms.main.rsmegabytes
msgid " MB"
msgstr ""

#: ljv.forms.main.rsterabytes
msgid " TB"
msgstr ""

#: ljv.forms.main.rstypearray
msgid "Array"
msgstr ""

#: ljv.forms.main.rstypeboolean
msgid "Boolean"
msgstr ""

#: ljv.forms.main.rstypenull
msgid "Null"
msgstr ""

#: ljv.forms.main.rstypenumberfloat
msgid "Number (Float)"
msgstr ""

#: ljv.forms.main.rstypenumberint64
msgid "Number (Int64)"
msgstr ""

#: ljv.forms.main.rstypenumberinteger
msgid "Number (Integer)"
msgstr ""

#: ljv.forms.main.rstypenumberqword
msgid "Number (QWord)"
msgstr ""

#: ljv.forms.main.rstypeobject
msgid "Object"
msgstr ""

#: ljv.forms.main.rstypestring
msgid "String"
msgstr ""

#: ljv.forms.main.rstypeunknown
msgctxt "ljv.forms.main.rstypeunknown"
msgid "Unknown"
msgstr ""

#: ljv.forms.main.rsvstnocolumns
msgid "There are no Columns"
msgstr ""

#: ljv.forms.main.rsvstunknown
msgctxt "ljv.forms.main.rsvstunknown"
msgid "Unknown"
msgstr ""

#: tfrmmain.actfileexit.caption
msgid "E&xit"
msgstr ""

#: tfrmmain.actfileexit.hint
msgid "Exit"
msgstr ""

#: tfrmmain.caption
msgid "frmMain"
msgstr ""

#: tfrmmain.lblcount.caption
msgid "lblCount"
msgstr ""

#: tfrmmain.lblname.caption
msgid "lblName"
msgstr ""

#: tfrmmain.lblpath.caption
msgid "lblPath"
msgstr ""

#: tfrmmain.lbltype.caption
msgid "lblType"
msgstr ""

#: tfrmmain.lblvalue.caption
msgid "lblValue"
msgstr ""

2 changes: 2 additions & 0 deletions src/json/ljv.json.utils.pas
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{ Implements JSON.Utils
This file is part of laz-JSON-Viewer
Copyright (c) 2021 Gustavo Carreno <guscarreno@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
6 changes: 4 additions & 2 deletions src/lazJSONViewer.lpi
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="11"/>
<Version Value="12"/>
<General>
<Flags>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="lazJSONViewer"/>
<Scaled Value="True"/>
<ResourceType Value="res"/>
Expand Down
2 changes: 2 additions & 0 deletions src/lazJSONViewer.lpr
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{ Program lazJSONViewer
This file is part of laz-JSON-Viewer
Copyright (c) 2021 Gustavo Carreno <guscarreno@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
2 changes: 2 additions & 0 deletions src/tree/ljv.tree.nodes.pas
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{ Implements Tree.Nodes
This file is part of laz-JSON-Viewer
Copyright (c) 2021 Gustavo Carreno <guscarreno@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down

0 comments on commit 1eda22f

Please sign in to comment.