kann mir jemand bitte sagen wo ich für die chatspot die deutsche lang_chatspot.php und lang_chatspot_admin.php her bekomme ?
die anderen php Dateien der chatspot habe ich gefunden.
thx.
Chatspot Deutsch
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.1, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
-
Gulaschk@none
- Mitglied
- Beiträge: 1542
- Registriert: 17.01.2006 12:43
Das mit den 5 Wörtern trifft aber nur für die lang_chatspot.php zu.
Hast du dir die lang_chatspot_admin.php mal angesehen?
Das sind 80 Zeilen mit ganzen Sätzen.
Hier der code der lang_chatspot_admin.php
Un das bräuchte ich in Deutsch
Hast du dir die lang_chatspot_admin.php mal angesehen?
Das sind 80 Zeilen mit ganzen Sätzen.
Hier der code der lang_chatspot_admin.php
Code: Alles auswählen
<?php
if( !defined( 'IN_ADMIN' ) )
{
die( "Hacking attempt" );
}
//Section: Top Explanation Thingy
$lang['csa_Config']='Chatspot Configuration';
$lang['csa_Config_Explain']='<p>From here you may configure the main Chatspot options. Features like Chatspot logging can be changed in their own section. The configuration is wrote to the file chatspot/chatspot_config.php; and can also be edited manually from there if you desire. This is to save on constant SQL queries.</p><p>User information; like their saved colour and their own preferences are still saved into your SQL database.';
//Section: Main (Generic) Settings
$lang['csa_Config_General']='Main Chatspot Settings';
$lang['csa_Enabled']='Enable Chatspot';
$lang['csa_Enabled_Explain']='Chatspot can be disabled from here. Only Adminstrators will be able to enter Chatspot when it is disabled. Chatspot will automatically disable when your forum is disabled, so this only needs to be used in special cases.';
$lang['csa_CheckBoardSessions']='Compare Board Sessions';
$lang['csa_CheckBoardSessions_Explain']='Compare online list with current board sessions.';
$lang['csa_DisplayNumUsersInRooms']='Display Number of Users In Rooms';
$lang['csa_DisplayNumUsersInRooms_Explain']='Count and display users in each room.';
$lang['csa_AnnounceRoomCreations']='Announce Room creations';
$lang['csa_AnnounceRoomCreations_Explain']='Make an announcement in chat upon the creation of a new room.';
$lang['csa_MaxMsgLen']='Max. Message Length';
$lang['csa_MaxMsgLen_Explain']='How many characters can be in a message (in characters).';
$lang['csa_MaxRooms']='Max. Rooms';
$lang['csa_MaxRooms_Explain']='The maximum number of rooms a user can be in simultaneously.';
$lang['csa_RefreshTime']='Refresh Time';
$lang['csa_RefreshTime_Explain']='New messages will be polled from the database after this time (in seconds); using a higher time will reduce queries but make Chatspot seem slower.';
$lang['csa_DeleteTime']='Delete Time';
$lang['csa_DeleteTime_Explain']='Messages will be purged from the database after this time (in seconds).';
$lang['csa_InactiveTime']='Inactive Time';
$lang['csa_InactiveTime_Explain']='A user will be removed from Chatspot (with the reason "expired session") when they have been inactive for this amount of time (in seconds).';
$lang['csa_AutoAway']='Automatic Away Time';
$lang['csa_AutoAway_Explain']='Users will be automatically marked as away after this length of time (in seconds).';
$lang['csa_FloodTime']='Flood Protection';
$lang['csa_FloodTime_Explain']='The minimum time, in seconds, between each message a user sends. Chatspot will not send messages sent quicker than this time.';
$lang['csa_InviteTime']='Invite Time';
$lang['csa_InviteTime_Explain']='A user will only be able to send one invite in this time, in seconds.';
//Section: Text Parsing
$lang['csa_TextParsing']='Text Parsing';
$lang['csa_AllowBbcode']='Allow BBcode';
$lang['csa_AllowBbcode_Explain']='Allow users to use [b], [i], [u], [color], and [size].';
$lang['csa_UseColours']='Allow Colours';
$lang['csa_UseColours_Explain']='Allow users to pick customized colours. This overrides the functions below.';
$lang['csa_SaveColours']='Colour Saving';
$lang['csa_SaveColours_Explain']='Save users\' colours to the SQL database so they can be easily recalled next time.';
$lang['csa_AllowHex']='Hex Colours';
$lang['csa_AllowHex_Explain']='Allow users to pick hex colours (ie: any colour they like).';
$lang['csa_UseGradient']='Gradient Picker';
$lang['csa_UseGradient_Explain']='Show the gradient colour picker, so users can pick colours easily.';
//Section: General Slash (/) Functions. [Well, you find a better name]
$lang['csa_SlashFunctions']='General /Slash Functons';
$lang['csa_UseIgnores']='Allow Ignores';
$lang['csa_UseIgnores_Explain']='Allow users to ignore each other. Useful in troublesome situations.';
$lang['csa_UseAlerts']='Allow Alerts';
$lang['csa_UseAlerts_Explain']='Allow users to use the alert functions.';
$lang['csa_UsePm']='Allow PMs (/p, /pm, /private)';
$lang['csa_UsePm_Explain']='Allow users to send private messages to each other inside Chatspot.';
$lang['csa_UseNames']='Allow /name';
$lang['csa_UseNames_Explain']='Allow users to see who is in a room with /name, even if it is passworded, etc.';
//Section: Moderation Functions
$lang['csa_ModerationFunctions']='Moderation Functions';
$lang['csa_UseKicks']='Allow users to be kicked (/kick)';
$lang['csa_UseKicks_Explain']='Allow moderators and adminstrators to kick users out of Chatspot with /kick';
$lang['csa_UseKicksTime']='Allow kicks to have time spans (/kick <time>)';
$lang['csa_UseKicksTime_Explain']='Let a /kick be enacted for a maximum time of the Administrators choice. (eg: 1 day).';
$lang['csa_UsePurge']='Allow messaging purging (/purge)';
$lang['csa_UsePurge_Explain']='Allow messages to be purged from Chatspot with /purge all.';
$lang['csa_UseOverride']='Allow room password overriding';
$lang['csa_UseOverride_Explain']='Allow moderators and administrators to enter private rooms, regardless of whether they have the password or not.';
//Section: Other
$lang['csa_Other']='Other Options';
$lang['csa_UseNotice']='Show Beta Notice';
$lang['csa_UseNotice_Explain']='Show the beta notice on the "About" screen in Chatspot.';
?>