This file is neither allocated to a Premium Account, or a Collector's Account, and can therefore only be downloaded 10 times.
Code: Select all
http://rapidshare.com/files/163955600/SiteMap_Generator_v1.0.0B2.zip
Code: Select all
<?php
/**
*
* mcp [Deutsch-DU]
*
* @package language
* @version $Id: info_acp_sitemap_generator.php 2007-11-26 Joshua2100 $
* @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
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// 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
// in Deutsch uebersetzt von Jonathan Kadler (jonkad)
$lang = array_merge($lang, array(
'ACP_SITEMAP_GENERATOR' => 'SiteMap Generator',
'SITEMAP_GEN_DETAILS' => 'Erstellt eine XML sitemap für Dein Forum',
'SETTINGS' => 'Einstellungen',
'GENERATE' => 'Erstelle Sitemap',
'RUN_NOW' => 'XML Sitemap Generator',
'RUN_DESC' => 'Start der XML Sitemap erstellung',
'PINGORNOT' => 'Google Server Ping',
'PINGORNOT_DESC' => 'Sende einen Ping um Google Server nach der Sitemaperstellung zu informieren',
'SEO_MOD' => 'SEOMOD',
'SEOMOD_DESC' => 'Wenn SEOMOD installiert ist, URLs des SEOMODs benutzen',
'NOTE' => 'Bitte beachten',
'THE_NOTE' => 'Um Google Sitemaps zu benutzen, musst Du dich erst auf https://www.google.com/accounts/NewAccount registrieren',
'MAP_RETURN' => 'Zurück zum SiteMap Generator Index',
'PING_SUCCESS' => '% wurde erfolgreich über Deine neue Sitemap informiert',
'PING_FAIL' => 'Fehler: Server ping fehlgeschlagen',
'GENERATE_COMPLETE' => 'Alle Sitemaps wurden erfolgreich erstellt.',
'GENERATE_NOTSUCCESS' => 'Fehler: Es gab einen Fehler bei der Sitemaperstellung',
'GENERATE_COMPLETE' => 'SiteMap erstellung erfolgreich.',
'MAP_CREATE_FAIL' => 'Sitemap erstellung fehlgeschlagen.',
'MAP_WRITE_FAIL' => 'Sitemap-Datei konnte nicht gespeichert werden',
'MAP_GOOGLE_PING' => 'Ping zu Google fehlgeschlagen.',
'PING_ERROR' => ' Error Returned',
'SM_STATS' => 'SiteMap Statistik',
'SM_TOPIC_LINK' => 'Anzahl der Topiclinks',
'SM_FORUM_LINK' => 'Anzahl der Forenlinks',
'SM_VERSION' => 'SiteMap Generator Version',
'SM_TOPIC_SIZE' => 'TopicMap Size',
'SM_FORUM_SIZE' => 'ForumMap Site',
'MAPZIP' => 'Gzip Sitemaps',
'SHOWSTAT' => 'Sitemapstatistik anschauen',
));
?>