Commit d62965333c82daf9a4202a9ef182ad47e3022189
1 parent
80c6c916
KTS-3558
"Improve the Tag Cloud description text" Done. Changed description and updated i18n files. Committed By: Kevin Fourie Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8993 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
8 additions
and
3 deletions
i18n/knowledgeTree.pot
| ... | ... | @@ -8,7 +8,7 @@ msgid "" |
| 8 | 8 | msgstr "" |
| 9 | 9 | "Project-Id-Version: PACKAGE VERSION\n" |
| 10 | 10 | "Report-Msgid-Bugs-To: \n" |
| 11 | -"POT-Creation-Date: 2008-08-05 17:17+0200\n" | |
| 11 | +"POT-Creation-Date: 2008-08-05 18:04+0200\n" | |
| 12 | 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
| 13 | 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 14 | 14 | "Language-Team: LANGUAGE <LL@li.org>\n" |
| ... | ... | @@ -10242,6 +10242,7 @@ msgid "Tag" |
| 10242 | 10242 | msgstr "" |
| 10243 | 10243 | |
| 10244 | 10244 | #: lib/browse/Criteria.inc:894 plugins/tagcloud/TagCloudDashlet.php:55 |
| 10245 | +#: plugins/tagcloud/TagCloudPlugin.php:112 | |
| 10245 | 10246 | #: plugins/tagcloud/TagCloudPortlet.php:55 |
| 10246 | 10247 | msgid "Tag Cloud" |
| 10247 | 10248 | msgstr "" |
| ... | ... | @@ -10679,6 +10680,10 @@ msgstr "" |
| 10679 | 10680 | msgid "The following shortcut is no longer valid as the target document has been deleted. Please note that it has been automatically removed from the repository:" |
| 10680 | 10681 | msgstr "" |
| 10681 | 10682 | |
| 10683 | +#: plugins/tagcloud/TagCloudPlugin.php:113 | |
| 10684 | +msgid "The following tags are associated with your document" | |
| 10685 | +msgstr "" | |
| 10686 | + | |
| 10682 | 10687 | #: plugins/ktcore/admin/userManagement.php:156 |
| 10683 | 10688 | #: plugins/ktcore/admin/userManagement.php:221 |
| 10684 | 10689 | #: plugins/ktstandard/ldap/ldapbaseauthenticationprovider.inc.php:297 | ... | ... |
plugins/tagcloud/TagCloudPlugin.php
| ... | ... | @@ -109,8 +109,8 @@ require_once(KT_LIB_DIR . '/templating/templating.inc.php'); |
| 109 | 109 | function createFieldset(){ |
| 110 | 110 | // create the fieldsets entry |
| 111 | 111 | $oFieldset = KTFieldset::createFromArray(array( |
| 112 | - 'name' => 'Tag Cloud', | |
| 113 | - 'description' => 'Tag Cloud', | |
| 112 | + 'name' => _kt('Tag Cloud'), | |
| 113 | + 'description' => _kt('The following tags are associated with your document'), | |
| 114 | 114 | 'namespace' => 'tagcloud', |
| 115 | 115 | 'mandatory' => false, |
| 116 | 116 | 'isConditional' => false, | ... | ... |