First commit
This commit is contained in:
commit
3a568602da
36 changed files with 1584 additions and 0 deletions
48
language/en/info_acp_tagging.php
Executable file
48
language/en/info_acp_tagging.php
Executable file
|
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_TAGGING_TITLE' => 'Content Tagging',
|
||||
'ACP_TAGGING_SETTINGS' => 'Settings',
|
||||
'ACP_TAGGING_SETTING_SAVED' => 'Settings have been saved',
|
||||
'ACP_TAGGING_ADDTAG' => 'Add New Tag',
|
||||
'ACP_TAGGING_EDIT' => 'Edit',
|
||||
'ACP_TAGGING_DELETE' => 'Delete',
|
||||
'ACP_TAGGING_ACTIVE' => 'Active',
|
||||
'ACP_TAGGING_SEARCHABLE' => 'Searchable',
|
||||
'ACP_TAGGING_COLOR' => 'Color',
|
||||
'ACP_TAGGING_TAGTITLE' => 'Name',
|
||||
'ACP_TAGGING_SETTINGS_EDIT' => 'Edit A Tag',
|
||||
'ACP_TAGGING_SETTINGS_ADD' => 'Add New Tag',
|
||||
'ACP_TAGGING_SETTINGS_DELETE' => 'Delete Tag',
|
||||
'ACP_TAGGING_TAGACTIVE' => 'Active',
|
||||
'ACP_TAGGING_TAG_ADDED' => 'New tag \'%s\' added successfully',
|
||||
'ACP_TAGGING_TAG_EDITED' => 'Tag \'%s\' successfully edited',
|
||||
'ACP_TAGGING_TAG_DELETED' => 'Tag \'%s\' has been deleted',
|
||||
'ACP_TAGGING_INVALID_TAG' => 'Invalid tag id',
|
||||
'ACP_TAGGING_TAG_EMPTY' => 'Tag cannot be empty',
|
||||
'ACP_TAGGING_DELETE_CONFIRMATION' => 'Confirm Deletion of Tag \'%s\'',
|
||||
'ACP_TAGGING_DELETE_EXPLANATION' => 'Once this tag is deleted, all data associated with it will be lost and the tag will be removed from all existing posts. This cannot be undone',
|
||||
'ACP_TAGGING_TAGCOLOR' => 'Color',
|
||||
'ACP_TAGGING_TAGSEARCHABLE' => 'Searchable',
|
||||
'ACP_TAGGING_MAXTAGS' => 'Maximum Tags Per Post',
|
||||
'ACP_TAGGING_TAGTHREADS' => 'Allow Tagging Threads',
|
||||
'ACP_TAGGING_TAGPOSTS' => 'Allow Tagging Posts',
|
||||
'ACP_TAGGING_TAGLIST' => 'Tag List',
|
||||
'ACP_TAGGING_TAGSEARCH' => 'Allow Searching by Tag',
|
||||
'ACP_TAGGING_VIEWFORUM' => 'Show Tags in Forum View',
|
||||
'ACP_TAGGING_VIEWTOPIC' => 'Show Tags in Topic View',
|
||||
'ACP_TAGGING_RESULTS' => 'Show Tags in Search Results',
|
||||
'ACP_TAGGING_POSTING' => 'Posting Options',
|
||||
'ACP_TAGGING_SEARCH' => 'Search Options',
|
||||
'ACP_TAGGING_DISPLAY' => 'Display Options',
|
||||
));
|
||||
15
language/en/permissions_tagging.php
Executable file
15
language/en/permissions_tagging.php
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ACL_U_PEDODEV_TAGGING_CANTAGPOSTS' => 'Can tag posts',
|
||||
));
|
||||
19
language/en/tagging_post.php
Executable file
19
language/en/tagging_post.php
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'TAGGING_TAGS' => 'Tags',
|
||||
'TAGGING_LIMIT_ERROR' => 'Error: you are trying to select too many tags. Maximum tags: %d. You have selected: %d',
|
||||
'TAGGING_PERMISSION_ERROR' => 'Error: you do not have permission to tag posts',
|
||||
'TAGGING_THREAD_ERROR' => 'Error: tagging threads is not allowed',
|
||||
'TAGGING_POST_ERROR' => 'Error: tagging posts is not allowed',
|
||||
));
|
||||
20
language/en/tagging_search.php
Executable file
20
language/en/tagging_search.php
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'TAGGING_TAGS' => 'Tags',
|
||||
'TAGGING_TAGS_EXPLANATION' => 'Show results containing these tags. Can be used as a standalone search method or combined with the methods above',
|
||||
'TAGGING_TAGFILTER' => 'Tag Filter Method',
|
||||
'TAGGING_TAGFILTER_EXPLANATION' => 'When multiple tags are selected, this controls the tag filter method. Intersect will show results containing ALL matching tags, while union will show results containing ANY matching tags',
|
||||
'TAGGING_INTERSECT' => 'Intersect',
|
||||
'TAGGING_UNION' => 'Union',
|
||||
));
|
||||
Loading…
Add table
Add a link
Reference in a new issue