aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2005-12-10 23:20:21 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2005-12-10 23:20:21 +0000
commitb41525229be3e754f288e48e184626e53b211171 (patch)
treed82bc8a84467b59c584571a2d0db3c903d578a5e /phpBB/language/en
parent85fdeda51cfcfb4b75923bbb339c02533e4b5a54 (diff)
downloadforums-b41525229be3e754f288e48e184626e53b211171.tar
forums-b41525229be3e754f288e48e184626e53b211171.tar.gz
forums-b41525229be3e754f288e48e184626e53b211171.tar.bz2
forums-b41525229be3e754f288e48e184626e53b211171.tar.xz
forums-b41525229be3e754f288e48e184626e53b211171.zip
- custom profile fields
- prune users - prune forums git-svn-id: file:///svn/phpbb/trunk@5325 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en')
-rw-r--r--phpBB/language/en/acp/common.php19
-rw-r--r--phpBB/language/en/acp/profile.php138
-rw-r--r--phpBB/language/en/acp/prune.php77
3 files changed, 234 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php
index cad88b9c25..fdd3402ca0 100644
--- a/phpBB/language/en/acp/common.php
+++ b/phpBB/language/en/acp/common.php
@@ -59,6 +59,7 @@ $lang += array(
'ACP_CLIENT_COMMUNICATION' => 'Client Communication',
'ACP_COOKIE_SETTINGS' => 'Cookie Settings',
'ACP_CRITICAL_LOGS' => 'Error Log',
+ 'ACP_CUSTOM_PROFILE_FIELDS' => 'Custom Profile Fields',
'ACP_DISALLOW' => 'Disallow',
'ACP_DISALLOW_USERNAMES' => 'Disallow Usernames',
'ACP_EMAIL_SETTINGS' => 'Email Settings',
@@ -88,6 +89,9 @@ $lang += array(
'ACP_ORPHAN_ATTACHMENTS' => 'Orphan Attachments',
'ACP_PERMISSION_SETTINGS' => 'Permission Settings',
'ACP_PHP_INFO' => 'PHP Information',
+ 'ACP_PRUNE_FORUMS' => 'Prune Forums',
+ 'ACP_PRUNE_USERS' => 'Prune Users',
+ 'ACP_PRUNING' => 'Pruning',
'ACP_RANKS' => 'Ranks',
'ACP_SERVER_CONFIGURATION' => 'Server Configuration',
'ACP_SERVER_SETTINGS' => 'Server Settings',
@@ -132,6 +136,7 @@ $lang += array(
'LOGIN_ADMIN' => 'To administer the board you must be an authenticated user.',
'LOGIN_ADMIN_CONFIRM' => 'To administer the board you must re-authenticate yourself.',
'LOGIN_ADMIN_SUCCESS' => 'You have successfully authenticated and will now be redirected to the Administration Control Panel',
+ 'LOOK_UP_FORUM' => 'Select a Forum',
'MANAGE' => 'Manage',
'MOVE_DOWN' => 'Move Down',
@@ -154,6 +159,8 @@ $lang += array(
'UCP' => 'User Control Panel',
'USERNAMES_EXPLAIN' => 'Place each username on a seperate line',
'USER_CONTROL_PANEL' => 'User Control Panel',
+
+ 'WARNING' => 'Warning',
);
// PHP info
@@ -309,6 +316,18 @@ $lang += array(
'LOG_MODULE_ADD' => '<b>Module added</b><br />&#187; %s',
'LOG_MODULE_EDIT' => '<b>Module edited</b><br />&#187; %s',
+ 'LOG_PROFILE_FIELD_ACTIVATE' => '<b>Profile field activated</b><br />&#187; %s',
+ 'LOG_PROFILE_FIELD_CREATE' => '<b>Profile field added</b><br />&#187; %s',
+ 'LOG_PROFILE_FIELD_DEACTIVATE' => '<b>Profile field deactivated</b><br />&#187; %s',
+ 'LOG_PROFILE_FIELD_EDIT' => '<b>Profile field changed</b><br />&#187; %s',
+ 'LOG_PROFILE_FIELD_REMOVED' => '<b>Profile field removed</b><br />&#187; %s',
+
+ 'LOG_PRUNE' => '<b>Pruned forums</b><br />&#187; %s',
+ 'LOG_AUTO_PRUNE' => '<b>Auto-pruned forums</b><br />&#187; %s',
+ 'LOG_PRUNE_USER_DEAC' => '<b>Users deactivated</b><br />&#187; %s',
+ 'LOG_PRUNE_USER_DEL_DEL' => '<b>Users pruned and posts deleted</b><br />&#187; %s',
+ 'LOG_PRUNE_USER_DEL_ANON' => '<b>Users pruned and posts retained</b><br />&#187; %s',
+
'LOG_RESET_DATE' => '<b>Board start date reset</b>',
'LOG_RESET_ONLINE' => '<b>Most users online reset</b>',
'LOG_RESYNC_POSTCOUNTS' => '<b>User postcounts synced</b>',
diff --git a/phpBB/language/en/acp/profile.php b/phpBB/language/en/acp/profile.php
new file mode 100644
index 0000000000..67b26e080f
--- /dev/null
+++ b/phpBB/language/en/acp/profile.php
@@ -0,0 +1,138 @@
+<?php
+/**
+*
+* acp_profile [English]
+*
+* @package language
+* @version $Id$
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+/**
+* DO NOT CHANGE
+*/
+if (empty($lang) || !is_array($lang))
+{
+ $lang = array();
+}
+
+// DEVELOPERS PLEASE NOTE
+//
+// Placeholders can now contain order information, e.g. instead of
+// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
+// translators to re-order the output of data while ensuring it remains correct
+//
+// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
+// equally where a string contains only two placeholders which are used to wrap text
+// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
+
+// Custom profile fields
+$lang += array(
+ 'ADDED_PROFILE_FIELD' => 'Successfully added custom profile field',
+ 'ALPHA_ONLY' => 'Alphanumeric only',
+ 'ALPHA_SPACERS' => 'Alphanumeric and spacers',
+ 'ALWAYS_TODAY' => 'Always the current date',
+
+ 'BOOL_ENTRIES_EXPLAIN' => 'Enter your options now',
+ 'BOOL_TYPE_EXPLAIN' => 'Define the Type, either a checkbox or radio buttons',
+
+ 'CHANGED_PROFILE_FIELD' => 'Successfully changed profile field',
+ 'CHARS_ANY' => 'Any character',
+ 'CHECKBOX' => 'Checkbox',
+ 'CP_LANG_DEFAULT_VALUE' => 'Default Value',
+ 'CP_LANG_EXPLAIN' => 'Field Description',
+ 'CP_LANG_EXPLAIN_EXPLAIN' => 'The Explanation for this field presented to the user',
+ 'CP_LANG_NAME' => 'Field Name presented to the user',
+ 'CP_LANG_OPTIONS' => 'Options',
+ 'CREATE_NEW_FIELD' => 'Create New Field',
+ 'COLUMNS' => 'Columns',
+
+ 'DEFAULT_ISO_LANGUAGE' => 'Default Language [%s]',
+ 'DEFAULT_VALUE' => 'Default Value',
+ 'DELETE_PROFILE_FIELD' => 'Remove profile field',
+ 'DELETE_PROFILE_FIELD_CONFIRM' => 'Are you sure you want to delete this profile field?',
+ 'DISPLAY_AT_REGISTRATION' => 'Display at registration screen',
+ 'DROPDOWN_ENTRIES_EXPLAIN' => 'Enter your options now, every option in one line',
+
+ 'EMPTY_FIELD_IDENT' => 'Empty field name',
+ 'EMPTY_USER_FIELD_NAME' => 'Empty Field Name presented to the user',
+ 'ENTRIES' => 'Entries',
+ 'EVERYTHING_OK' => 'Everything OK',
+ 'EXCLUDE_FROM_VIEW' => 'Do not display profile field',
+ 'EXCLUDE_FROM_VIEW_EXPLAIN' => 'The profile field will not be shown on viewtopic/viewprofile/memberlist/etc.',
+
+ 'FIELD_BOOL' => 'Boolean (Yes/No)',
+ 'FIELD_DATE' => 'Date',
+ 'FIELD_DESCRIPTION' => 'Field Description',
+ 'FIELD_DESCRIPTION_EXPLAIN' => 'The Explanation for this field presented to the user',
+ 'FIELD_DROPDOWN' => 'Dropdown Box',
+ 'FIELD_IDENT' => 'Field Name',
+ 'FIELD_IDENT_EXPLAIN' => 'The Field Name is a name for you to identify the profile field, it is not displayed to the user.',
+ 'FIELD_INT' => 'Numbers',
+ 'FIELD_LENGTH' => 'Length of input box',
+ 'FIELD_NOT_FOUND' => 'Profile field not found',
+ 'FIELD_STRING' => 'Single Textfield',
+ 'FIELD_TEXT' => 'Textarea',
+ 'FIELD_TYPE' => 'Field Type',
+ 'FIELD_TYPE_EXPLAIN' => 'You are not able to change the field type later.',
+ 'FIELD_VALIDATION' => 'Field Validation',
+ 'FIRST_OPTION' => 'First Option',
+
+ 'HIDE_PROFILE_FIELD' => 'Hide Profile Field',
+ 'HIDE_PROFILE_FIELD_EXPLAIN' => 'Only Administrators and Moderators are able to see/fill out this profile field',
+
+ 'INVALID_CHARS_FIELD_IDENT' => 'Field name can only contain lowercase a-z and _',
+ 'ISO_LANGUAGE' => 'Language [%s]',
+
+ 'LANG_SPECIFIC_OPTIONS' => 'Language specific options [<b>%s</b>]',
+
+ 'MAX_FIELD_CHARS' => 'Maximum number of characters',
+ 'MAX_FIELD_NUMBER' => 'Highest allowed number',
+ 'MIN_FIELD_CHARS' => 'Minimum number of characters',
+ 'MIN_FIELD_NUMBER' => 'Lowest allowed number',
+
+ 'NO_FIELD_ENTRIES' => 'No Entries defined',
+ 'NO_FIELD_ID' => 'No field id specified',
+ 'NO_FIELD_TYPE' => 'No Field type specified',
+ 'NO_VALUE_OPTION' => 'Option equal to non entered value',
+ 'NO_VALUE_OPTION_EXPLAIN' => 'Value for a non-entry. If the field is required, the user gets an error if he choose the option selected here',
+ 'NUMBERS_ONLY' => 'Only numbers (0-9)',
+
+ 'PREVIEW_PROFILE_FIELD' => 'Preview Profile Field',
+ 'PROFILE_BASIC_OPTIONS' => 'Basic Options',
+ 'PROFILE_FIELD_ACTIVATED' => 'Profile field successfully activated',
+ 'PROFILE_FIELD_DEACTIVATED' => 'Profile field successfully deactivated',
+ 'PROFILE_LANG_OPTIONS' => 'Language specific options',
+ 'PROFILE_TYPE_OPTIONS' => 'Profile type specific options',
+
+ 'RADIO_BUTTONS' => 'Radio Buttons',
+ 'REMOVED_PROFILE_FIELD' => 'Successfully removed profile field.',
+ 'REQUIRED_FIELD' => 'Required Field',
+ 'REQUIRED_FIELD_EXPLAIN' => 'Force profile field to be filled out or specified by user',
+ 'ROWS' => 'Rows',
+
+ 'SAVE' => 'Save',
+ 'SECOND_OPTION' => 'Second Option',
+ 'STEP_1_EXPLAIN_CREATE' => 'Here you can enter the first basic parameters of your new profile field. These informations are needed for the second step where you are able to set remaining options and where you are able to preview and tweak your profile field further.',
+ 'STEP_1_EXPLAIN_EDIT' => 'Here you can change the basic parameters of your profile field. The relevant options are re-calculated within the second step, where you are able to preview and test the changed settings.',
+ 'STEP_1_TITLE_CREATE' => 'Add Profile Field',
+ 'STEP_1_TITLE_EDIT' => 'Edit Profile Field',
+ 'STEP_2_EXPLAIN_CREATE' => 'Here you are able to define some common options. Further you are able to preview the field you generated, as the user will see it. Play around with it until you are satisfied as how the field behaves.',
+ 'STEP_2_EXPLAIN_EDIT' => 'Here you are able to change some common options. Further you are able to preview the changed field, as the user will see it. Play around with it until you are satisfied as how the field behaves.<br /><b>Please note that changes to profile fields will not affect existing profile fields entered by your users.</b>',
+ 'STEP_2_TITLE_CREATE' => 'Profile type specific options',
+ 'STEP_2_TITLE_EDIT' => 'Profile type specific options',
+ 'STEP_3_EXPLAIN_CREATE' => 'Since you have more than one board language installed, you have to fill out the remaining language items too. The profile field will work with the default language enabled, you are able to fill out the remaining language items later too.',
+ 'STEP_3_EXPLAIN_EDIT' => 'Since you have more than one board language installed, you now can change or add the remaining language items too. The profile field will work with the default language enabled.',
+ 'STEP_3_TITLE_CREATE' => 'Remaining Language Definitions',
+ 'STEP_3_TITLE_EDIT' => 'Language Definitions',
+ 'STRING_DEFAULT_VALUE_EXPLAIN' => 'Enter a default phrase to be displayed, a default value. Leave empty if you want to show it empty at the first place.',
+
+ 'TEXT_DEFAULT_VALUE_EXPLAIN' => 'Enter a default text to be displayed, a default value. Leave empty if you want to show it empty at the first place.',
+
+ 'UPDATE_PREVIEW' => 'Update Preview',
+ 'USER_FIELD_NAME' => 'Field Name presented to the user',
+);
+
+?> \ No newline at end of file
diff --git a/phpBB/language/en/acp/prune.php b/phpBB/language/en/acp/prune.php
new file mode 100644
index 0000000000..38ad6b75c6
--- /dev/null
+++ b/phpBB/language/en/acp/prune.php
@@ -0,0 +1,77 @@
+<?php
+/**
+*
+* acp_prune [English]
+*
+* @package language
+* @version $Id$
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+/**
+* DO NOT CHANGE
+*/
+if (empty($lang) || !is_array($lang))
+{
+ $lang = array();
+}
+
+// DEVELOPERS PLEASE NOTE
+//
+// Placeholders can now contain order information, e.g. instead of
+// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
+// translators to re-order the output of data while ensuring it remains correct
+//
+// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
+// equally where a string contains only two placeholders which are used to wrap text
+// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
+
+// User pruning
+$lang += array(
+ 'ACP_PRUNE_USERS_EXPLAIN' => 'Here you can delete (or deactivate) users from you board. This can be done in a variety of ways; by post count, last activity, etc. Each of these criteria can be combined, i.e. you can prune users last active before 2002-01-01 with fewer than 10 posts. Alternatively you can enter a list of users directly into the text box, any criteria entered will be ignored. Take care with this facility! Once a user is deleted there is no way back.',
+
+ 'DEACTIVATE' => 'Deactivate',
+ 'DEACTIVATE_DELETE' => 'Deactivate or delete',
+ 'DEACTIVATE_DELETE_EXPLAIN' => 'Choose whether to deactivate users or delete them entirely, note there is no undo!',
+ 'DELETE_USERS' => 'Delete',
+ 'DELETE_USER_POSTS' => 'Delete pruned user posts',
+ 'DELETE_USER_POSTS_EXPLAIN' => 'Removes posts made by deleted users, has no effect if users are deactivated.',
+
+ 'JOINED_EXPLAIN' => 'Enter a date in YYYY-MM-DD format.',
+
+ 'LAST_ACTIVE_EXPLAIN' => 'Enter a date in YYYY-MM-DD format.',
+
+ 'SELECT_USERS_EXPLAIN' => 'Enter specific usernames here, they will be used in preference to the criteria above.',
+
+ 'USER_DEACTIVATE_SUCCESS' => 'The selected users have been deactivated successfully',
+ 'USER_DELETE_SUCCESS' => 'The selected users have been deleted successfully',
+);
+
+// Forum Pruning
+$lang += array(
+ 'ACP_PRUNE_FORUMS_EXPLAIN' => 'This will delete any topic which has not been posted to within the number of days you select. If you do not enter a number then all topics will be deleted. It will not remove topics in which polls are still running nor will it remove announcements. You will need to remove these topics manually.',
+
+ 'FORUM_PRUNE' => 'Forum Prune',
+
+ 'NO_PRUNE' => 'No forums pruned',
+
+ 'SELECTED_FORUM' => 'Selected Forum',
+ 'SELECTED_FORUMS' => 'Selected Forums',
+
+ 'POSTS_PRUNED' => 'Posts pruned',
+ 'PRUNE_ANNOUNCEMENTS' => 'Prune Announcements',
+ 'PRUNE_FINISHED_POLLS' => 'Prune Closed Polls',
+ 'PRUNE_FINISHED_POLLS_EXPLAIN' => 'Removes topics with polls which have ended.',
+ 'PRUNE_NOT_POSTED' => 'Days since last posted',
+ 'PRUNE_NOT_VIEWED' => 'Days since last viewed',
+ 'PRUNE_OLD_POLLS' => 'Prune Old Polls',
+ 'PRUNE_OLD_POLLS_EXPLAIN' => 'Removes topics with polls not voted in for post age days.',
+ 'PRUNE_STICKY' => 'Prune Stickies',
+ 'PRUNE_SUCCESS' => 'Pruning of forums was successful',
+
+ 'TOPICS_PRUNED' => 'Topics pruned',
+);
+
+?> \ No newline at end of file