mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-08 00:25:19 +02:00
Various new phrases
git-svn-id: file:///svn/phpbb/trunk@4556 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
08b66d9025
commit
2d1eb29e36
@ -214,6 +214,9 @@ $lang += array(
|
||||
'LOG_BBCODE_ADD' => '<b>Added new BBCode</b><br />» %s',
|
||||
'LOG_BBCODE_EDIT' => '<b>Edited BBCode</b><br />» %s',
|
||||
'LOG_BBCODE_DELETE' => '<b>Deleted BBCode</b><br />» %s',
|
||||
|
||||
'LOG_EMAIL_ERROR' => '%s',
|
||||
'LOG_JABBER_ERROR' => '%s',
|
||||
);
|
||||
|
||||
// Index page
|
||||
@ -643,6 +646,10 @@ $lang += array(
|
||||
'SMTP_SERVER' => 'SMTP Server Address',
|
||||
'SMTP_PORT' => 'SMTP Server Port',
|
||||
'SMTP_PORT_EXPLAIN' => 'Only change this if you know your SMTP server is on a different port.',
|
||||
'SMTP_AUTH_METHOD' => 'Authentication method for SMTP',
|
||||
'SMTP_AUTH_METHOD_EXPLAIN' => 'Only used if a username/password is set, ask your provider if you are unsure which method to use.',
|
||||
'SMTP_LOGIN' => 'LOGIN',
|
||||
'SMTP_PLAIN' => 'PLAIN',
|
||||
'SMTP_USERNAME' => 'SMTP Username',
|
||||
'SMTP_USERNAME_EXPLAIN' => 'Only enter a username if your smtp server requires it.',
|
||||
'SMTP_PASSWORD' => 'SMTP Password',
|
||||
@ -758,6 +765,15 @@ $lang += array(
|
||||
$lang += array(
|
||||
'KARMA_SETTINGS' => 'Karma Settings',
|
||||
'KARMA_SETTINGS_EXPLAIN'=> 'Here you can enable and disable the user Karma rating system. You can also modify the weighting factors used to derive each users karma.',
|
||||
'ENABLE_KARMA' => 'Enable Karma',
|
||||
|
||||
'KARMA_HIST_WEIGHT' => 'Historical ratings weighting',
|
||||
'KARMA_HIST_WEIGHT_EXPLAIN' => 'Ratings made before the previous 30 days',
|
||||
'KARMA_DAY_WEIGHT' => 'Recent ratings weighting',
|
||||
'KARMA_DAY_WEIGHT_EXPLAIN' => 'Ratings made in past 30 days',
|
||||
'KARMA_REG_WEIGHT' => 'Membership length weighting',
|
||||
'KARMA_REG_WEIGHT_EXPLAIN' => 'Total length of membership',
|
||||
'KARMA_POST_WEIGHT' => 'Total posts weighting',
|
||||
);
|
||||
|
||||
// Avatars
|
||||
|
@ -583,7 +583,7 @@ $lang += array(
|
||||
'USER_CANNOT_QUOTE' => 'You cannot quote posts in this forum',
|
||||
'USER_CANNOT_EDIT' => 'You cannot edit posts in this forum',
|
||||
'USER_CANNOT_DELETE' => 'You cannot delete posts in this forum',
|
||||
'USER_CANNOT_POST' => 'You cannot report posts in this forum',
|
||||
'USER_CANNOT_REPORT' => 'You cannot report posts in this forum',
|
||||
'CANNOT_POST_STICKY' => 'Sorry but you cannot post sticky topics.',
|
||||
'CANNOT_POST_ANNOUNCE' => 'Sorry but you cannot post announcements.',
|
||||
'CANNOT_POST_NEWS' => 'Sorry but you cannot post news topics.',
|
||||
@ -839,10 +839,6 @@ $lang += array(
|
||||
'New_account_subject' => 'New user account',
|
||||
'Account_activated_subject' => 'Account Activated',
|
||||
|
||||
'Account_active' => 'Your account has now been activated. Thank you for registering',
|
||||
'Account_active_admin' => 'The account has now been activated',
|
||||
'Reactivate' => 'Reactivate your account!',
|
||||
'Already_activated' => 'You have already activated your account',
|
||||
|
||||
|
||||
|
||||
@ -859,7 +855,6 @@ $lang += array(
|
||||
'ACCOUNT_INACTIVE_ADMIN'=> 'Your account has been created. However, this forum requires account activation by the administrator. An email has been sent to them and you will be informed when your account has been activated',
|
||||
'ACCOUNT_COPPA' => 'Your account has been created but has to be approved, please check your email for details.',
|
||||
|
||||
'Wrong_activation' => 'The activation key you supplied does not match any in the database',
|
||||
'Send_password' => 'Send me a new password',
|
||||
'Password_updated' => 'A new password has been created, please check your email for details on how to activate it',
|
||||
'No_email_match' => 'The email address you supplied does not match the one listed for that username',
|
||||
@ -870,16 +865,32 @@ $lang += array(
|
||||
'COPPA' => 'Your account has been created but has to be approved, please check your email for details.',
|
||||
);
|
||||
|
||||
// ucp_activate
|
||||
$lang += array(
|
||||
'Account_active' => 'Your account has now been activated. Thank you for registering',
|
||||
'Account_active_admin' => 'The account has now been activated',
|
||||
'Reactivate' => 'Reactivate your account!',
|
||||
'Already_activated' => 'You have already activated your account',
|
||||
'Wrong_activation' => 'The activation key you supplied does not match any in the database',
|
||||
);
|
||||
|
||||
// ucp_prefs
|
||||
$lang += array(
|
||||
'UCP_PREFS' => 'Preferences',
|
||||
|
||||
'UCP_PERSONAL' => 'Personal Settings',
|
||||
'HIDE_ONLINE' => 'Hide my online status',
|
||||
'NOTIFY_METHOD' => 'Notification method',
|
||||
'NOTIFY_METHOD_EXPLAIN' => 'Method for sending messages sent via this board.',
|
||||
'NOTIFY_METHOD_EMAIL' => 'Email only',
|
||||
'NOTIFY_METHOD_IM' => 'Jabber only',
|
||||
'NOTIFY_METHOD_BOTH' => 'Both',
|
||||
'NOTIFY_ON_PM' => 'Email me on new private messages',
|
||||
'POPUP_ON_PM' => 'Pop up window on new private message',
|
||||
'SHOW_EMAIL' => 'Users can contact me by email',
|
||||
'ADMIN_EMAIL' => 'Administrators can email me information',
|
||||
'ALLOW_PM' => 'Allow users to send you private messages',
|
||||
'ALLOW_PM_EXPLAIN' => 'Note that admins and moderators will always be able to send you messages.',
|
||||
'BOARD_STYLE' => 'My board style',
|
||||
'BOARD_LANGUAGE' => 'My language',
|
||||
'BOARD_TIMEZONE' => 'My timezone',
|
||||
@ -1072,7 +1083,7 @@ $lang += array(
|
||||
'IM_SEND' => 'Send Message',
|
||||
'IM_NO_JABBER' => 'Sorry, direct messaging of Jabber users is not supported on this server. You will need a Jabber client installed on your system to contact the recipient above.',
|
||||
'IM_SENT_JABBER' => 'Your message to %1$s has been sent successfully.',
|
||||
'IM_JABBER_SUBJECT' => 'Message from user %1$s at %2$s', // This needs to be part of a contact template
|
||||
'IM_JABBER_SUBJECT' => 'This is an automated message please do not reply! Message from user %1$s at %2$s', // This needs to be part of a contact template
|
||||
);
|
||||
|
||||
// gcp
|
||||
|
Loading…
x
Reference in New Issue
Block a user