First semi-usable version of wiki asset. This should probably be improved

somewhat before release; the default page selector doesn't quite work the way
it should, and there aren't icons, and there are a few features missing, and
some code duplication, &c.
This commit is contained in:
Drake 2006-10-13 20:08:56 +00:00
parent d0bacc8988
commit 1674bcfe10
11 changed files with 987 additions and 0 deletions

View file

@ -0,0 +1,58 @@
package WebGUI::i18n::English::Asset_WikiMaster;
our $I18N =
{
'assetName' =>
{ lastUpdated => 1160157064, message => 'Wiki' },
'groupToEditPages hoverHelp' =>
{ lastUpdated => 1160157064, message => q|Choose a group of users who will be able to edit pages in this wiki instance. They will not, by default, be able to delete pages or revisions, or edit protected pages.| },
'groupToEditPages label' =>
{ lastUpdated => 1160157064, message => q|Who can edit pages?| },
'groupToAdminister hoverHelp' =>
{ lastUpdated => 1160157064, message => q|Choose a group of users who will be able to perform administrative actions on pages in this wiki instance; such actions include deletion of pages and page revisions, and protecting and unprotecting of pages.| },
'groupToAdminister label' =>
{ lastUpdated => 1160157064, message => q|Who can administer?| },
'richEditor hoverHelp' =>
{ lastUpdated => 1160157064, message => q|Which rich editor to use for editing pages in this wiki instance.| },
'richEditor label' =>
{ lastUpdated => 1160157064, message => q|Rich Editor| },
'defaultPage hoverHelp' =>
{ lastUpdated => 1160157064, message => q|Which page to display by default when someone browses to the wiki's main URL.| },
'defaultPage label' =>
{ lastUpdated => 1160157064, message => q|Default Page| },
'pageTemplateId hoverHelp' =>
{ lastUpdated => 1160157064, message => q|Which template to use to display pages.| },
'pageTemplateId label' =>
{ lastUpdated => 1160157064, message => q|Page Template| },
'recentChangesTemplateId hoverHelp' =>
{ lastUpdated => 1160157064, message => q|Which template to use for the recent changes display.| },
'recentChangesTemplateId label' =>
{ lastUpdated => 1160157064, message => q|Recent Changes Template| },
'pageHistoryTemplateId hoverHelp' =>
{ lastUpdated => 1160505291, message => q|Which template to use for the page history display.| },
'pageHistoryTemplateId label' =>
{ lastUpdated => 1160505291, message => q|Page History Template| },
'pageListTemplateId hoverHelp' =>
{ lastUpdated => 1160417517, message => q|Which template to use for displaying lists of pages.| },
'pageListTemplateId label' =>
{ lastUpdated => 1160417517, message => q|Page List Template| },
'func addPage link text' =>
{ lastUpdated => 1160157064, message => q|Add a new page| },
'func listPages link text' =>
{ lastUpdated => 1160417517, message => q|List all pages| },
'func recentChanges link text' =>
{ lastUpdated => 1160768887, message => q|Show recent changes| },
'listPages title' =>
{ lastUpdated => 1160417517, message => q|List of pages| },
};
1;

View file

@ -0,0 +1,31 @@
package WebGUI::i18n::English::Asset_WikiPage;
our $I18N =
{
'assetName' =>
{ lastUpdated => 1160157064, message => 'Wiki Page' },
'func edit link text' =>
{ lastUpdated => 1160157064, message => q|Edit this page| },
'func view link text' =>
{ lastUpdated => 1160157064, message => q|View this page| },
'func pageHistory link text' =>
{ lastUpdated => 1160425002, message => q|View this page's history| },
'func protect link text' =>
{ lastUpdated => 1160425002, message => q|Protect this page| },
'func unprotect link text' =>
{ lastUpdated => 1160425002, message => q|Unprotect this page| },
'actionN edited' =>
{ lastUpdated => 1160505291, message => q|Edited| },
'actionN trashed' =>
{ lastUpdated => 1160505291, message => q|Deleted| },
'actionN protected' =>
{ lastUpdated => 1160505291, message => q|Protected| },
'actionN unprotected' =>
{ lastUpdated => 1160505291, message => q|Unprotected| },
'actionN created' =>
{ lastUpdated => 1160505291, message => q|Created| },
};
1;