Code: Select all
'UNSUBCRIBE_USER' => 'Regisztráció törlése',
Code: Select all
'UNSUBCRIBE_USER' => 'מחק חשבון',
Where is 0.1.2 version? Or direct link is 0.1.2 with 0.1.1 name?tas2580 wrote:Update to 0.1.2
Change:
* Added subsilver2 template
* Added english language
Code: Select all
Install UCP module ("Unsubcribe User [ucp_unsubcribe]")
Code: Select all
<?php
/**
*
* posting [Danish � Da]
*
* @package language
* @version $Id: unsubcribe.php,v 0.1.2 2008/03/18 18:22:12 tas2580 Exp $
* @copyright (c) SEO phpBB http://www.seo-phpbb.org
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
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
$lang = array_merge($lang, array(
'UNSUBCRIBE_USER' => 'Slet konto',
));
?>
Code: Select all
<?php
/**
*
* posting [Danish � Da]
*
* @package language
* @version $Id: unsubcribe.php,v 0.1.2 2008/03/18 18:22:12 tas2580 Exp $
* @copyright (c) SEO phpBB http://www.seo-phpbb.org
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
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
$lang = array_merge($lang, array(
'USER_DELETED' => 'Denne bruger konto er nu slettet!',
'UNSUBCRIBE_USER_TXT' => 'Her kan du slette din konto. Bemærk at slettede kontoer ikke kan blive genskabt.',
'DEL_POSTINGS' => 'Bevar dine posts',
'DEL_POSTINGS_DESC' => 'Vælg hvad der skal ske med dine posts',
'DEL_POST' => 'Slet dine posts',
'KEEP_POST' => 'Bevar dine posts, men skift brugernavn til anonym',
'CURRENT_PASSWORD_DESC' => 'Skriv dit kodeord for at bekræfte at din profil må slettes',
'LOG_USER_DELETED' => 'Brugeren har slettet sin konto',
'USER_REALY_DEL' => 'Bekræft sletning',
'UNSUBCRIBE_USER' => 'Slet bruger',
'UNSUBCRIBE_USER_DESC' => 'Bekræft at du virkelige vil slette din konto',
'USER_NOT_DELETED' => '<b> FEJL !!!</ b> Brugeren kunne ikke slettes! <br /> Du har muligvis ikke indtastet det korrekte kodeord',
));
?>