Commit 9ae1633b07ea06b20930ac2fb6e4e0ea732a0857
1 parent
80e02784
- changes to copy by Daniel Chalef
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4595 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
7 changed files
with
25 additions
and
26 deletions
plugins/ktcore/KTCorePlugin.php
| @@ -48,17 +48,17 @@ class KTCorePlugin extends KTPlugin { | @@ -48,17 +48,17 @@ class KTCorePlugin extends KTPlugin { | ||
| 48 | function setupAdmin() { | 48 | function setupAdmin() { |
| 49 | // set up the categories. | 49 | // set up the categories. |
| 50 | $this->registerAdminCategory("principals", _("Users and Groups"), | 50 | $this->registerAdminCategory("principals", _("Users and Groups"), |
| 51 | - _("Control which users can log in, and are part of which groups and organisational units from these management panels.")); | ||
| 52 | - $this->registerAdminCategory("plugins", _("Plugin Management"), | ||
| 53 | - _("Control which plugins are loaded, register new plugins, and configure individual plugins.")); | 51 | + _("Control which users can log in, and are part of which groups and organisational units, from these management panels.")); |
| 54 | $this->registerAdminCategory("security", _("Security Management"), | 52 | $this->registerAdminCategory("security", _("Security Management"), |
| 55 | _("Assign permissions to users and groups, and specify which permissions are required to interact with various parts of the Document Management System.")); | 53 | _("Assign permissions to users and groups, and specify which permissions are required to interact with various parts of the Document Management System.")); |
| 54 | + $this->registerAdminCategory("plugins", _("Plugin Management"), | ||
| 55 | + _("Control which plugins are loaded, register new plugins and configure individual plugins.")); | ||
| 56 | $this->registerAdminCategory("storage", _("Document Storage"), | 56 | $this->registerAdminCategory("storage", _("Document Storage"), |
| 57 | - _("Manage how and where the actual documents will be stored, work with document archives and deal with other document related problems.")); | ||
| 58 | - $this->registerAdminCategory("documents", _("Document Type Configuration"), | ||
| 59 | - _("Configure the information that needs to be collected about different kinds of documents.")); | 57 | + _("Manage checked-out, archived and deleted documents.")); |
| 58 | + $this->registerAdminCategory("documents", _("Document Metadata and Workflow Configuration"), | ||
| 59 | + _("Configure the document metadata: Document Types, Document Fieldsets, Link Types and Workflows.")); | ||
| 60 | $this->registerAdminCategory("misc", _("Miscellaneous"), | 60 | $this->registerAdminCategory("misc", _("Miscellaneous"), |
| 61 | - _("Various settings which do not fit into the other categories, including help, etc.")); | 61 | + _("Various settings which do not fit into the other categories, including managing help and saved searches.")); |
| 62 | 62 | ||
| 63 | // users and groups | 63 | // users and groups |
| 64 | $this->registerAdminPage("users", 'KTUserAdminDispatcher', "principals", | 64 | $this->registerAdminPage("users", 'KTUserAdminDispatcher', "principals", |
| @@ -75,13 +75,13 @@ class KTCorePlugin extends KTPlugin { | @@ -75,13 +75,13 @@ class KTCorePlugin extends KTPlugin { | ||
| 75 | 75 | ||
| 76 | // security | 76 | // security |
| 77 | $this->registerAdminPage("permissions", 'ManagePermissionsDispatcher', "security", | 77 | $this->registerAdminPage("permissions", 'ManagePermissionsDispatcher', "security", |
| 78 | - _("Permissions"), _("Create or Delete permissions."), 'admin/managePermissions.php', null); | 78 | + _("Permissions"), _("Create or delete permissions."), 'admin/managePermissions.php', null); |
| 79 | $this->registerAdminPage("roles", 'RoleAdminDispatcher', "security", | 79 | $this->registerAdminPage("roles", 'RoleAdminDispatcher', "security", |
| 80 | - _("Roles"), _("Create or Delete roles"), | 80 | + _("Roles"), _("Create or delete roles"), |
| 81 | 'admin/roleManagement.php', null); | 81 | 'admin/roleManagement.php', null); |
| 82 | $this->registerAdminPage("conditions", 'KTConditionDispatcher', "security", | 82 | $this->registerAdminPage("conditions", 'KTConditionDispatcher', "security", |
| 83 | _("Conditions"), | 83 | _("Conditions"), |
| 84 | - _("Manage document conditions, which can be used to control whether certain actions are permitted or not."), | 84 | + _("Manage criteria which determine whether a user is permitted to perform a system action."), |
| 85 | 'admin/conditions.php', null); | 85 | 'admin/conditions.php', null); |
| 86 | 86 | ||
| 87 | // documents | 87 | // documents |
| @@ -91,11 +91,11 @@ class KTCorePlugin extends KTPlugin { | @@ -91,11 +91,11 @@ class KTCorePlugin extends KTPlugin { | ||
| 91 | 'admin/documentTypes.php', null); | 91 | 'admin/documentTypes.php', null); |
| 92 | $this->registerAdminPage("fieldmanagement", 'KTDocumentFieldDispatcher', 'documents', | 92 | $this->registerAdminPage("fieldmanagement", 'KTDocumentFieldDispatcher', 'documents', |
| 93 | _('Document Fieldsets'), | 93 | _('Document Fieldsets'), |
| 94 | - _('Control which kinds of documents have which sets of information associated with them.'), | 94 | + _('Manage the different types of information that can be associated with classes of documents.'), |
| 95 | 'admin/documentFields.php', null); | 95 | 'admin/documentFields.php', null); |
| 96 | $this->registerAdminPage("linkmanagement", 'KTDocLinkAdminDispatcher', 'documents', | 96 | $this->registerAdminPage("linkmanagement", 'KTDocLinkAdminDispatcher', 'documents', |
| 97 | _('Link Type Management'), | 97 | _('Link Type Management'), |
| 98 | - _('Specify the different "link types" - ways to relate different documents togeter.'), | 98 | + _('Manage the different ways documents can be associated with one another.'), |
| 99 | 'admin/documentLinks.php', null); | 99 | 'admin/documentLinks.php', null); |
| 100 | $this->registerAdminPage("workflows", 'KTWorkflowDispatcher', 'documents', | 100 | $this->registerAdminPage("workflows", 'KTWorkflowDispatcher', 'documents', |
| 101 | _('Workflows'), _('Configure the process documents go through.'), | 101 | _('Workflows'), _('Configure the process documents go through.'), |
templates/ktcore/dashlets/checkedout.smarty
| 1 | <h2>{i18n}Your Checked-out Documents{/i18n}</h2> | 1 | <h2>{i18n}Your Checked-out Documents{/i18n}</h2> |
| 2 | -<p class="descriptiveText">{i18n}Since a document | ||
| 3 | -which is checked out cannot be modified by anyone else, | ||
| 4 | -it is important to check them back in as soon as you have made | ||
| 5 | -the apppriate changes.{/i18n}</p> | 2 | +<p class="descriptiveText">{i18n}A checked-out document may not be modified by others. Please ensure that you check-in your documents to the repository as soon as you have finished working with them.{/i18n}</p> |
| 6 | {if (!empty($documents))} | 3 | {if (!empty($documents))} |
| 7 | <dl> | 4 | <dl> |
| 8 | {foreach item=oDocument from=$documents} | 5 | {foreach item=oDocument from=$documents} |
templates/ktcore/dashlets/usertutorial.smarty
| 1 | <h2>{i18n}Crash Course in KnowledgeTree{/i18n}</h2> | 1 | <h2>{i18n}Crash Course in KnowledgeTree{/i18n}</h2> |
| 2 | <p class="descriptiveText">{i18n}New to Document Management, or to | 2 | <p class="descriptiveText">{i18n}New to Document Management, or to |
| 3 | -KnowledgeTree™ 3? We've written some quick documentation{/i18n}</p> | 3 | +KnowledgeTree™ 3? We've written some quick documentation to help you along{/i18n}</p> |
| 4 | 4 | ||
| 5 | <div class="ktError"><p class="descriptiveText"><strong>FIXME</strong> This currently doesn't work.</p></div> | 5 | <div class="ktError"><p class="descriptiveText"><strong>FIXME</strong> This currently doesn't work.</p></div> |
| 6 | 6 |
templates/ktcore/document/admin/archivedlist.smarty
| 1 | <h2>{i18n}Archived Documents{/i18n}</h2> | 1 | <h2>{i18n}Archived Documents{/i18n}</h2> |
| 2 | 2 | ||
| 3 | <p class="descriptiveText">{i18n}In order to keep the documents which are visible useful | 3 | <p class="descriptiveText">{i18n}In order to keep the documents which are visible useful |
| 4 | -to end users, it is possible to <strong>archive</strong> old documents. Users who | ||
| 5 | -want to see these old documents need to request their restoration - these requests | ||
| 6 | -will typically be done within the system, and will generate a | 4 | +to end users it is possible to <strong>archive</strong> old documents. Users who |
| 5 | +want to see these old documents need to request their restoration. These requests | ||
| 6 | +will typically be done within the system and will generate a | ||
| 7 | notification to you.{/i18n} | 7 | notification to you.{/i18n} |
| 8 | </p> | 8 | </p> |
| 9 | 9 |
templates/ktcore/document/admin/checkoutlisting.smarty
| 1 | <h2>{i18n}Checked Out Documents{/i18n}</h2> | 1 | <h2>{i18n}Checked Out Documents{/i18n}</h2> |
| 2 | -<p class="descriptiveText">{i18n}If a checked-out document has been | ||
| 3 | -lost, or the user who checked a document out has not checked it back in, | ||
| 4 | -it may be necessary to override the "checked-out" status of a document. | 2 | +<p class="descriptiveText">{i18n}It may be necessary to override the <strong>checked-out</strong> status of a document if: |
| 3 | +<ul> | ||
| 4 | +<li>the local copy of the checked-out document has been lost;</li> | ||
| 5 | +<li>the user who did the check-out is not currently available to check it back in.</li> | ||
| 6 | +</ul> | ||
| 5 | Use the <strong>force checkin</strong> action in the listing below to | 7 | Use the <strong>force checkin</strong> action in the listing below to |
| 6 | override the checked-out status.{/i18n}</p> | 8 | override the checked-out status.{/i18n}</p> |
| 7 | <!-- FIXME set classes here for listing. --> | 9 | <!-- FIXME set classes here for listing. --> |
templates/ktcore/document/admin/deletedlist.smarty
| 1 | <h2>{i18n}Deleted Documents{/i18n}</h2> | 1 | <h2>{i18n}Deleted Documents{/i18n}</h2> |
| 2 | 2 | ||
| 3 | -<p class="descriptiveText">{i18n}Documents which are deleted by users are hidden from view, | ||
| 4 | -but still available for restoration. Since this consumes system resources, it | 3 | +<p class="descriptiveText">{i18n}Documents which are deleted by users are hidden from view |
| 4 | +but still available for restoration. Since "soft deletes" consume system resources, it | ||
| 5 | is possible to <strong>expunge</strong> these documents. Alternatively, you | 5 | is possible to <strong>expunge</strong> these documents. Alternatively, you |
| 6 | can <strong>restore</strong> them as necessary.{/i18n}</p> | 6 | can <strong>restore</strong> them as necessary.{/i18n}</p> |
| 7 | 7 |
templates/ktcore/document/admin/force_checkin_confirm.smarty
| 1 | <h2>{i18n}Confirm Forced Check-in{/i18n}</h2> | 1 | <h2>{i18n}Confirm Forced Check-in{/i18n}</h2> |
| 2 | -<p class="descriptiveText">{i18n}Please confirm that this is the document that you wish to checkin.{/i18n}</p> | 2 | +<p class="descriptiveText">{i18n}Please confirm that this is the document that you wish to check-in.{/i18n}</p> |
| 3 | 3 | ||
| 4 | <div class="document_details"> | 4 | <div class="document_details"> |
| 5 | <h3>Document Details</h3> | 5 | <h3>Document Details</h3> |