Current oav website
This commit is contained in:
84
dotclear._no/plugins/pages/locales/en/help/page.html
Normal file
84
dotclear._no/plugins/pages/locales/en/help/page.html
Normal file
@ -0,0 +1,84 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Editing a page</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<h4>Editing a page</h4>
|
||||
|
||||
<dl>
|
||||
<dt>Page title</dt>
|
||||
<dd>Type in the page title. This field is mandatory.</dd>
|
||||
|
||||
<dt>Excerpt</dt>
|
||||
<dd>This field is optional.</dd>
|
||||
|
||||
<dt>Content</dt>
|
||||
<dd>The content of your page. This field is mandatory.</dd>
|
||||
|
||||
<dt>Notes</dt>
|
||||
<dd>This text area is for personal use, for notes or memos. What you enter here
|
||||
will never be displayed on the blog.</dd>
|
||||
|
||||
<dt>Page status</dt>
|
||||
<dd>Allows you to choose your page status:
|
||||
<ul>
|
||||
<li><strong>Pending:</strong> The publication status has not yet been decided (not published yet).</li>
|
||||
<li><strong>Scheduled:</strong> The page will be set online at the time and date
|
||||
set in the <em>Published on</em> field.</li>
|
||||
<li><strong>Unpublished:</strong> The page is offline.</li>
|
||||
<li><strong>Published:</strong> The page is online.</li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
||||
<dt>Publication date and hour</dt>
|
||||
<dd>Here you can change the page publication date and time. If the page
|
||||
status is <em>Scheduled</em>, it will be online at the given date and time.</dd>
|
||||
|
||||
<dt>Page language</dt>
|
||||
<dd>Select the language code of your entry. It defaults to your (as a
|
||||
user) language but you can change it to whatever language code you want, e.g.
|
||||
"en" or "es-ar". This code is used for the entry's display.</dd>
|
||||
|
||||
<dt>Text formatting</dt>
|
||||
<dd>Choose the page syntax. Wiki is a simplified syntax
|
||||
and will be converted to valid XHTML. Unless you have a perfect
|
||||
understanding of XHTML, we advise you to choose the Wiki syntax.
|
||||
See the Wiki syntax reference for more information.</dd>
|
||||
|
||||
<dt>Page position</dt>
|
||||
<dd>Orders pages according to this number.
|
||||
This field is used by the <strong>Pages</strong> widget (<em>Order by page position</em>).</dd>
|
||||
|
||||
<dt>Attachments</dt>
|
||||
<dd>Attachments are media files added to the page. You can use the <strong>Add files to this entry</strong> button to select media files to add to the entry.<br />
|
||||
This option will appear after you save your entry.<br />
|
||||
Please check the Media manager help for more information.</dd>
|
||||
|
||||
<dt>Accept comments</dt>
|
||||
<dd>Check this box to allow your visitors to comment on this page. The corresponding global setting can be found in the blog settings.</dd>
|
||||
|
||||
<dt>Accept trackbacks</dt>
|
||||
<dd>A trackback is a way to let a portion of your page as a comment on
|
||||
another blog. Check this box to allow others to trackback your page. The
|
||||
corresponding global setting is to be found in the blog settings.</dd>
|
||||
|
||||
<dt>Hide in widget Pages</dt>
|
||||
<dd>If this option is checked, the page will be active but will not be listed in the Pages widget.</dd>
|
||||
|
||||
<dt>Password</dt>
|
||||
<dd>You can enter a password for your page. A password protected page will
|
||||
not be displayed on your blog, it will only be accessible to those you will
|
||||
give the entry URL to (see the <strong>Go to this page on the site</strong> link) and password.
|
||||
|
||||
<dt>Basename</dt>
|
||||
<dd>By clicking on its lock, you can unprotect this field and choose another
|
||||
URL for your page. If the URL you're trying to use is already used by another
|
||||
page, a number will be added to it.</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
22
dotclear._no/plugins/pages/locales/en/help/pages.html
Normal file
22
dotclear._no/plugins/pages/locales/en/help/pages.html
Normal file
@ -0,0 +1,22 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Pages management</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h4>Selected pages actions</h4>
|
||||
<p>If your user permission level allows it, you can perform batch operations on the pages you select in the list.</p>
|
||||
|
||||
<ul>
|
||||
<li><strong>Publish:</strong> set pages online,</li>
|
||||
<li><strong>Unpublish:</strong> set pages offline,</li>
|
||||
<li><strong>Schedule:</strong> schedule the page to go online at the date defined in the <strong>Publication date</strong> field,</li>
|
||||
<li><strong>Mark as pending:</strong> erase other publication status,</li>
|
||||
<li><strong>Change author:</strong> allows you to change the pages' author by
|
||||
entering the new author's ID,</li>
|
||||
<li><strong>Delete:</strong> delete the pages (this operation cannot be undone).</li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
15
dotclear._no/plugins/pages/locales/en/resources.php
Normal file
15
dotclear._no/plugins/pages/locales/en/resources.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Dotclear
|
||||
* @subpackage Plugins
|
||||
*
|
||||
* @copyright Olivier Meunier & Association Dotclear
|
||||
* @copyright GPL-2.0-only
|
||||
*/
|
||||
|
||||
if (!isset($__resources['help']['pages'])) {
|
||||
$__resources['help']['pages'] = dirname(__FILE__) . '/help/pages.html';
|
||||
}
|
||||
if (!isset($__resources['help']['page'])) {
|
||||
$__resources['help']['page'] = dirname(__FILE__) . '/help/page.html';
|
||||
}
|
||||
Reference in New Issue
Block a user