Skip to content

Commit

Permalink
Bunch of manifest work.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 21, 2008
1 parent 677aca9 commit ab22590
Show file tree
Hide file tree
Showing 3 changed files with 276 additions and 94 deletions.
4 changes: 4 additions & 0 deletions docs.txt
Expand Up @@ -60,6 +60,7 @@ This is fairly easy. The installer eventually wants to see a directory
data/
scripts/
guis/
meta/

This is called the "Base Archive," even if it's a real directory tree in the
physical filesystem and not in an actual archive, such as a .zip file.
Expand All @@ -72,6 +73,9 @@ This is called the "Base Archive," even if it's a real directory tree in the
"guis" is where the installer looks for those shared libraries that got
built in the first step. Copy them in here, if you built any.

"meta" contains installer metadata: graphics for splash screens, etc. It's sort
of a catch-all for things that don't fit elsewhere.

"scripts" is where Lua scripts go. You'll put your config file in here
(config.lua), the translation table (localizations.lua), and whatever other
scripts come with MojoSetup, which are required application logic. The
Expand Down
9 changes: 9 additions & 0 deletions scripts/localization.lua
Expand Up @@ -934,6 +934,15 @@ MojoSetup.localization = {
nb = "Metadata",
se = "Metadata",
};

-- This error is shown if incorrect command line arguments are used.
["Invalid command line"] = {
};

-- This error is shown when updating the manifest, if it can't load the
-- file for some reason. '%0' is the manifest's package name.
["Couldn't load manifest file for '%0'"] = {
};
};

-- end of localization.lua ...
Expand Down

0 comments on commit ab22590

Please sign in to comment.