prime_birthdate ve BBcode

phpBB 3.0.x sürümleri için yapılan ve geliştirilen MODların dil dosyalarını Türkçeleştirme forumu.
Forum kuralları
- Yeni bir başlık açarken lütfen konu başlığına "Acil yardım", "Acele yardım" tarzlarında içerisinde "yardım" kelimesi geçen cümleler yazmayınız. Bu tip başlıklara kesinlikle cevap verilmeyecektir. Lütfen konu başlığına içeriği en iyi özetleyen anlaşılabilir bir cümle yazınız.

- Ayrıca yeni başlıklarınızı [b:3i9adkcm]kesinlikle ilgili forumlara açınız.[/b:3i9adkcm] Örneğin, phpBB3 kurulum ve çalıştırması hakkında bir sorununuz varsa "3.0.x Destek Forumu" forumuna başlık açınız; phpBB3 temasından kaynaklı bir sorunuz varsa "3.0.x Stil/Tema Geliştirme & Tartışma & Yardım" forumuna başlık açınız; phpBB3 mod/eklentileriyle ilgili sorununuz varsa "3.0.x MOD Destek" forumuna başlık açınız. [b:3i9adkcm]Bu kurala uymayan kullanıcıların başlıkları silinebilir ve kullanıcı uyarı alabilir ya da süresiz uzaklaştırılabilir.[/b:3i9adkcm]

- [url=http://www.phpbbturkey.com/forums/viewtopic.php?t=690:3i9adkcm]Site kurallarımızı[/url:3i9adkcm] okumadan kesinlikle forumlarımıza herhangi bir katılım yapmayınız.
Cevapla
bjk55
Kayıtlı Kullanıcı
Mesajlar: 95
Kayıt: 06.01.2008, 20:39

prime_birthdate ve BBcode

Mesaj gönderen bjk55 »

abboce.php

Kod: Tümünü seç

<?php
/** 
*
* abbcode [English]
*
* @package language
* @version $Id: abbcode.php.php, v 1.0.1 2008/01/11 leviatan21 Exp $
* @copyright leviatan21 < info@mssti.com > (Gabriel) http://www.mssti.com/phpbb2/
* @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
//
// Reference : http://www.phpbb.com/mods/documentation/phpbb-documentation/language/index.php#lang-use-php

/**
* NOTE: Most of the language items are used in javascript
* If you want to use quotes or other chars that need escaped, be sure you escape them double 
* (Especially for ', you must use \\\' instead of \'. For " you only need to use \".
*/

/**
* á = á
* Á = Ã  XX
* é = é
* É = É XX
* í = í
* Í = Ã?
* ó = ó
* Ó = Ó
* ú = ú
* Ú = Ú
* ñ = ñ
* Ñ = Ñ
* ? = ¿
*/

$lang = array_merge($lang, array(
	'BBCODE_STYLES_TIP'			=> 'Tip: Styles can be applied quickly to selected text.',
	
	// Dorpdown titles options
	'ABBCODE_FONT_TYPE'				=> 'Font type ',
	'ABBCODE_FONT_SIZE'				=> 'Font size',
	'ABBCODE_FONT_HILI'				=> 'Highlighted',
	'ABBCODE_FONT_GIANT'			=> 'Giant',
	
	// Text to be applied to the helpline & mouseover 
	'ABBCODE_JUSTIFY_MOVER'			=> 'Text justified',
	'ABBCODE_JUSTIFY_HELP'			=> ': [align=justify]text[/align].',
	'ABBCODE_RIGHT_MOVER'			=> 'Text right aligned',
	'ABBCODE_RIGHT_HELP'			=> ': [align=right]text[/align].',
	'ABBCODE_CENTER_MOVER'			=> 'Text aligned to the centre',
	'ABBCODE_CENTER_HELP'			=> ': [align=center]text[/align].',
	'ABBCODE_LEFT_MOVER'			=> 'Text left aligned',
	'ABBCODE_LEFT_HELP'				=> ': [align=left]text[/align].',
	'ABBCODE_PRE_MOVER'				=> 'Text preformatted',
	'ABBCODE_PRE_HELP'				=> ': [pre]text[/pre].',
	'ABBCODE_SUP_MOVER'				=> 'Sets the text as superscripts',
	'ABBCODE_SUP_HELP'				=> ': [sup]text[/sup].',
	'ABBCODE_SUB_MOVER'				=> 'Sets the text as subscripts',
	'ABBCODE_SUB_HELP'				=> ': [sub]text[/sub].',
	'ABBCODE_BOLD_MOVER'			=> 'Text in bold',
	'ABBCODE_BOLD_HELP'				=> ': [b]text[/b].',
	'ABBCODE_ITA_MOVER'				=> 'Text in italics',
	'ABBCODE_ITA_HELP'				=> ': [i]text[/i].',
	'ABBCODE_UNDER_MOVER'			=> 'Text underlined',
	'ABBCODE_UNDER_HELP'			=> ': [u]text[/u].',
	'ABBCODE_STRIKE_MOVER'			=> 'Text strikethrough',
	'ABBCODE_STRIKE_HELP'			=> ': [s]text[/s].',
	'ABBCODE_FADE_MOVER'			=> 'Text fadein fadeout',
	'ABBCODE_FADE_HELP'				=> ': [fade]text[/fade].',
	'ABBCODE_GRAD_MOVER'			=> 'Text gradient',
	'ABBCODE_GRAD_HELP'				=> ': [grad]text[/grad].',
	'ABBCODE_RTL_MOVER'				=> 'Text with reading right-to-left',
	'ABBCODE_RTL_HELP'				=> ': [dir=rtl]text[/dir].',
	'ABBCODE_LTR_MOVER'				=> 'Text with reading left-to-right',
	'ABBCODE_LTR_HELP'				=> ': [dir=LTR]text[/dir].',
	'ABBCODE_MARQD_MOVER'			=> 'Scrolling text down',
	'ABBCODE_MARQD_HELP'			=> ': [marq=down]text[/marq].',
	'ABBCODE_MARQU_MOVER'			=> 'Scrolling text upwards',
	'ABBCODE_MARQU_HELP'			=> ': [marq=up]text[/marq].',
	'ABBCODE_MARQR_MOVER'			=> 'Displacement text to the right',
	'ABBCODE_MARQR_HELP'			=> ': [marq=right]text[/marq].',
	'ABBCODE_MARQL_MOVER'			=> 'Displacement text to the left',
	'ABBCODE_MARQL_HELP'			=> ': [marq=left]text[/marq].',
	'ABBCODE_TABLE_MOVER'			=> 'Insert a table',
	'ABBCODE_TABLE_HELP'			=> ': [table=(ccs style)][tr=(ccs style)][td=(ccs style)]text[/td][/tr][/table].',
	'ABBCODE_QUOTE_MOVER'			=> 'Quote',
	'ABBCODE_QUOTE_HELP'			=> ': [quote]text[/quote].',
	'ABBCODE_CODE_MOVER'			=> 'Code',
	'ABBCODE_CODE_HELP'				=> ': [code]codigo
.',
'ABBCODE_SPOIL_MOVER' => 'Spoiler text',
'ABBCODE_SPOIL_HELP' => ': [spoil]text[/spoil].',
'ABBCODE_ED2K_MOVER' => 'Link eD2K',
'ABBCODE_ED2K_HELP' => ': link ed2k o Name ed2k.',
'ABBCODE_URL_MOVER' => 'Web address',
'ABBCODE_URL_HELP' => ': [url]http://...[/url] o [url=http://...]Name Web[/url].',
'ABBCODE_EMAIL_MOVER' => 'Email',
'ABBCODE_EMAIL_HELP' => ': user@server.ext.',
'ABBCODE_WEB_MOVER' => 'Insert site in the post',
'ABBCODE_WEB_HELP' => ': [web]URL web[/web].',
'ABBCODE_IMG_MOVER' => 'Insert image',
'ABBCODE_IMG_HELP' => ': [img]http://...[/img].',
'ABBCODE_FLASH_MOVER' => 'Insert flash file',
'ABBCODE_FLASH_HELP' => ': [flash width=# height=#]URL flash[/flash].',
'ABBCODE_VIDEO_MOVER' => 'Insert video',
'ABBCODE_VIDEO_HELP' => ': [video width=# height=#]URL video[/video].',
'ABBCODE_STREAM_MOVER' => 'Insert sound',
'ABBCODE_STREAM_HELP' => ': [stream]URL stream[/stream].',
'ABBCODE_RAM_MOVER' => 'Insert Real Media',
'ABBCODE_RAM_HELP' => ': [ram]URL Real Media[/ram].',
'ABBCODE_STAGE_MOVER' => 'Insert video from Stage6', // from http://www.stage6.com/
'ABBCODE_STAGE_HELP' => ': [stage6]Stage6 ID[/stage6].',
'ABBCODE_GVIDEO_MOVER' => 'Insert video from Google',
'ABBCODE_GVIDEO_HELP' => ': [GVideo]URL video[/GVideo].',
'ABBCODE_YOUTUBE_MOVER' => 'Insert video from Youtube',
'ABBCODE_YOUTUBE_HELP' => ': [youtube]URL video[/youtube].',
'ABBCODE_LISTB_MOVER' => 'Bullet list',
'ABBCODE_LISTB_HELP' => ':
  • text
Note: Use [*] to create bullets.',
'ABBCODE_LISTM_MOVER' => 'Ordered list',
'ABBCODE_LISTM_HELP' => ':
  • text
Note: Use [*] to create bullets.',
'ABBCODE_HR_MOVER' => 'Header',
'ABBCODE_HR_HELP' => ': [hr] Note: Creates a header line row to seperate text.',
'ABBCODE_TEXTC_MOVER' => 'Color text',
'ABBCODE_TEXTC_HELP' => ': text Note: You can use html colors color=#FF0000 or color=red.',
'ABBCODE_TEXTS_MOVER' => 'Size text',
'ABBCODE_TEXTS_HELP' => ': text giant Note: The value will be interpreted as a percentage.',
'ABBCODE_TEXTF_MOVER' => 'Font tipe',
'ABBCODE_TEXTF_HELP' => ': [font=Tahoma]text[/font].',
'ABBCODE_TEXTH_MOVER' => 'Text highlighted',
'ABBCODE_TEXTH_HELP' => ': [highlight=red]text[/highlight] Note: You can use html colors color=#FF0000 or color=red.',
'ABBCODE_CUT_MOVER' => 'Removes selected text.',
'ABBCODE_COPY_MOVER' => 'Copy selected text.',
'ABBCODE_PASTE_MOVER' => 'Paste copied text.',
'ABBCODE_PLAIN_MOVER' => 'Remove labels BBCodes the selected text.',

// Wizard texts
'ABBCODE_ERROR' => 'Error : ',
'ABBCODE_ERROR_TAG' => 'Unexpected Error using tag : ',

'ABBCODE_GRAD_MIN_ERROR' => 'Please, first select the text : ',
'ABBCODE_GRAD_MAX_ERROR' => 'Only allows less than 120 characters : ',

'ABBCODE_TABLE_STYLE' => 'Enter style table' . '\n\n' . 'Example:width:50%;border:1px solid #CCCCCC;',
'ABBCODE_ROW_NUMBER' => 'Enter number of rows',
'ABBCODE_ROW_ERROR' => 'You did not write the number of rows',
'ABBCODE_ROW_STYLE' => 'Enter style rows' . '\n\n' . 'Example:border:1px solid #CCCCCC;',
'ABBCODE_CELL_NUMBER' => 'Enter number of cells',
'ABBCODE_CELL_ERROR' => 'You did not write the number of cells.',
'ABBCODE_CELL_STYLE' => 'Enter style cell' . '\n\n' . 'Example:text-align:center;',

'ABBCODE_ID' => 'Enter identifier :',
'ABBCODE_NOID' => '\n' . 'You did not write the identifier.',
'ABBCODE_LINK' => 'Enter link :',
'ABBCODE_DESC' => 'Enter a description of the link',
'ABBCODE_NAME' => 'Description',
'ABBCODE_NOLINK' => '\n' . 'You did not write a link.',
'ABBCODE_NODESC' => '\n' . 'You did not write a description.',
'ABBCODE_WIDTH' => 'Enter width :',
'ABBCODE_WIDTH_NOTE' => '\n\n' . 'Note: The value can be expressed as a percentage.',
'ABBCODE_NOWIDTH' => '\n' . 'You did not write the width.',
'ABBCODE_HEIGHT' => 'Enter the height :',
'ABBCODE_HEIGHT_NOTE' => '\n\n' . 'Note: The value can be expressed as a percentage.',
'ABBCODE_NOHEIGHT' => '\n' . 'You did not write the height.',

'ABBCODE_ED2K_TAG' => ' ed2k links.',
'ABBCODE_URL_TAG' => ' page.',
'ABBCODE_WEB_TAG' => ' web.',
'ABBCODE_EMAIL_TAG' => ' email.',
'ABBCODE_IMG_TAG' => ' image.',
'ABBCODE_FLASH_TAG' => ' flash.',
'ABBCODE_VIDEO_TAG' => ' video.',
'ABBCODE_STREAM_TAG' => ' sound.',
'ABBCODE_RAM_TAG' => ' Real Media.',
'ABBCODE_RAM_TAG' => ' Stage6.',
'ABBCODE_GVIDEO_TAG' => ' Google Video.',
'ABBCODE_GVIDEO_NOTE' => '\n\n' . 'Example: http://video.google.com/videoplay?docid ... 3384451128.',
'ABBCODE_YOUTUBE_TAG' => ' Youtube.',
'ABBCODE_YOUTUBE_NOTE' => '\n\n' . 'Example: http://www.youtube.com/watch?v=aabbcc12.',

'SPOILER_SHOW' => 'Show Spoiler',
'SPOILER_HIDE' => 'Hide Spoiler',

));

?>[/code]

Kod: Tümünü seç

prime_birthdate.php


<?php
/**
*
* prime_birthdate [English]
*
* @package language
* @version $Id: prime_birthdate.php,v 1.0.RC1 2007/08/27 18:10:00 primehalo Exp $
* @copyright (c) 2007 Ken F. Innes IV
* @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
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge($lang, array(
	'PRIME_BIRTHDATE_NAME'			=> 'Birth Date',
	'PRIME_BIRTHDATE_ENTER'			=> 'Please enter your birth date',
	'PRIME_BIRTHDATE_ERROR'			=> 'You have entered an invalid birth date.',
	'PRIME_BIRTHDATE_EMPTY'			=> 'You must enter your birth date to continue.',
	'PRIME_BIRTHDATE_BABY'			=> 'You are too young to be registered here.',
	'PRIME_BIRTHDATE_MIN'			=> 'Minimum age',
	'PRIME_BIRTHDATE_MIN_EXPLAIN'	=> 'Require user to be this age in order to register. Only functions if <em>Allow birthdays</em> is enabled.',
	'PRIME_BIRTHDATE_YEARS_OLD'		=> 'Years old',
	'PRIME_BIRTHDATE_REQUIRE'		=> 'Require',
	'PRIME_BIRTHDATE_LOCK'			=> 'Require & Lock',

	'PRIME_BIRTHDATE_SHOW_AGE'			=> 'Display age',
	'PRIME_BIRTHDATE_SHOW_AGE_EXPLAIN'	=> 'Determines if your age is publicly viewable.',

	'PRIME_BIRTHDATE_SHOW_CONGRATS'			=> 'Display Birthday Congrats',
	'PRIME_BIRTHDATE_SHOW_CONGRATS_EXPLAIN'	=> 'Determines if your username will appear on the congratulations list when it is your birthday.',
));

?>
Kullanıcı avatarı
ALTUN
Kayıtlı Kullanıcı
Mesajlar: 23
Kayıt: 22.11.2006, 23:16
İletişim:

Re: prime_birthdate ve BBcode

Mesaj gönderen ALTUN »

Simdilik abbcode.php dil dosyasını çevirebildim. Zaman olunca prime_birthdate.php
dil dosyasınıda çevirmeye çalışırım.

abbcode.php

Kod: Tümünü seç

<?php
/** 
*
* abbcode [Turkish]
*
* @package language
* @version $Id: abbcode.php.php, v 1.0.1 2008/01/11 leviatan21 Exp $
* @copyright leviatan21 < info@mssti.com > (Gabriel) http://www.mssti.com/phpbb2/
* @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
//
// Reference : http://www.phpbb.com/mods/documentation/phpbb-documentation/language/index.php#lang-use-php

/**
* NOTE: Most of the language items are used in javascript
* If you want to use quotes or other chars that need escaped, be sure you escape them double 
* (Especially for ', you must use \\\' instead of \'. For " you only need to use \".
*/

/**
* á = á
* Á = Ã  XX
* é = é
* É = É XX
* í = í
* Í = Ã?
* ó = ó
* Ó = Ó
* ú = ú
* Ú = Ú
* ñ = ñ
* Ñ = Ñ
* ? = ¿
*/

$lang = array_merge($lang, array(
   'BBCODE_STYLES_TIP'         => 'İpucu: Stiller, seçili metne hızla uygulanabilir.',
   
   // Dorpdown titles options
   'ABBCODE_FONT_TYPE'            => 'Yazı türü ',
   'ABBCODE_FONT_SIZE'            => 'Yazı boyutu',
   'ABBCODE_FONT_HILI'            => 'Vurgulanmış',
   'ABBCODE_FONT_GIANT'         => 'Dev',
   
   // Text to be applied to the helpline & mouseover 
   'ABBCODE_JUSTIFY_MOVER'         => 'Yanlara yaslı metin',
   'ABBCODE_JUSTIFY_HELP'         => ': [align=justify]metin[/align].',
   'ABBCODE_RIGHT_MOVER'         => 'Sağa hizalanmış metin',
   'ABBCODE_RIGHT_HELP'         => ': [align=right]metin[/align].',
   'ABBCODE_CENTER_MOVER'         => 'Ortaya hizalanmış metin',
   'ABBCODE_CENTER_HELP'         => ': [align=center]metin[/align].',
   'ABBCODE_LEFT_MOVER'         => 'Sola hizalanmış metin',
   'ABBCODE_LEFT_HELP'            => ': [align=left]metin[/align].',
   'ABBCODE_PRE_MOVER'            => 'Önceden biçimlendirilmiş metin',
   'ABBCODE_PRE_HELP'            => ': [pre]metin[/pre].',
   'ABBCODE_SUP_MOVER'            => 'Metnin üstüne takılar ayarlar',
   'ABBCODE_SUP_HELP'            => ': [sup]metin[/sup].',
   'ABBCODE_SUB_MOVER'            => 'Metnin altına takılar ayarlar',
   'ABBCODE_SUB_HELP'            => ': [sub]metin[/sub].',
   'ABBCODE_BOLD_MOVER'         => 'Kalın metin',
   'ABBCODE_BOLD_HELP'            => ': [b]metin[/b].',
   'ABBCODE_ITA_MOVER'            => 'İtalik metin',
   'ABBCODE_ITA_HELP'            => ': [i]metin[/i].',
   'ABBCODE_UNDER_MOVER'         => 'Altı çizilmiş metin',
   'ABBCODE_UNDER_HELP'         => ': [u]metin[/u].',
   'ABBCODE_STRIKE_MOVER'         => 'Üzeri çizili metin',
   'ABBCODE_STRIKE_HELP'         => ': [s]metin[/s].',
   'ABBCODE_FADE_MOVER'         => 'Solup açan metin',
   'ABBCODE_FADE_HELP'            => ': [fade]metin[/fade].',
   'ABBCODE_GRAD_MOVER'         => 'Rengi derece derece değişen metin ',
   'ABBCODE_GRAD_HELP'            => ': [grad]metin[/grad].',
   'ABBCODE_RTL_MOVER'            => 'Metni sağdan sola doğru okumak için',
   'ABBCODE_RTL_HELP'            => ': [dir=rtl]metin[/dir].',
   'ABBCODE_LTR_MOVER'            => 'Metni soldan sağa doğru okumak için',
   'ABBCODE_LTR_HELP'            => ': [dir=LTR]metin[/dir].',
   'ABBCODE_MARQD_MOVER'         => 'Metni aşağı doğru kaydırma',
   'ABBCODE_MARQD_HELP'         => ': [marq=down]metin[/marq].',
   'ABBCODE_MARQU_MOVER'         => 'Metni yukarı doğru kaydırma',
   'ABBCODE_MARQU_HELP'         => ': [marq=up]metin[/marq].',
   'ABBCODE_MARQR_MOVER'         => 'Metni sağa doğru kaydırma',
   'ABBCODE_MARQR_HELP'         => ': [marq=right]metin[/marq].',
   'ABBCODE_MARQL_MOVER'         => 'Metni sola doğru kaydırma',
   'ABBCODE_MARQL_HELP'         => ': [marq=left]metin[/marq].',
   'ABBCODE_TABLE_MOVER'         => 'Bir tablo ekleyin',
   'ABBCODE_TABLE_HELP'         => ': [table=(ccs style)][tr=(ccs style)][td=(ccs style)]text[/td][/tr][/table].',
   'ABBCODE_QUOTE_MOVER'         => 'Alıntı',
   'ABBCODE_QUOTE_HELP'         => ': [quote]metin[/quote].',
   'ABBCODE_CODE_MOVER'         => 'Kod',
   'ABBCODE_CODE_HELP'            => ': [code]kod
.',
'ABBCODE_SPOIL_MOVER' => 'Döküman metin',
'ABBCODE_SPOIL_HELP' => ': [spoil]metin[/spoil].',
'ABBCODE_ED2K_MOVER' => 'eD2K bağlantısı',
'ABBCODE_ED2K_HELP' => ': link ed2k veya ed2k adı.',
'ABBCODE_URL_MOVER' => 'Web adresi',
'ABBCODE_URL_HELP' => ': [url]http://...[/url] veya [url=http://...]Web adı[/url].',
'ABBCODE_EMAIL_MOVER' => 'Eposta',
'ABBCODE_EMAIL_HELP' => ': [email]kullanıcı@server.ext[/email].',
'ABBCODE_WEB_MOVER' => 'Mesaja site ekle',
'ABBCODE_WEB_HELP' => ': [web]URL web[/web].',
'ABBCODE_IMG_MOVER' => 'Resim ekle',
'ABBCODE_IMG_HELP' => ': [img]http://...[/img].',
'ABBCODE_FLASH_MOVER' => 'Flash dosyası ekle',
'ABBCODE_FLASH_HELP' => ': [flash width=# height=#]URL flash[/flash].',
'ABBCODE_VIDEO_MOVER' => 'Video ekle',
'ABBCODE_VIDEO_HELP' => ': [video width=# height=#]URL video[/video].',
'ABBCODE_STREAM_MOVER' => 'Ses dosyası ekle',
'ABBCODE_STREAM_HELP' => ': [stream]URL stream[/stream].',
'ABBCODE_RAM_MOVER' => 'Real Media dosyası ekle',
'ABBCODE_RAM_HELP' => ': [ram]URL Real Media[/ram].',
'ABBCODE_STAGE_MOVER' => 'Videoyu Stage6\'dan ekleyin', // from http://www.stage6.com/
'ABBCODE_STAGE_HELP' => ': [stage6]Stage6 ID[/stage6].',
'ABBCODE_GVIDEO_MOVER' => 'Videoyu Google\'den ekleyin',
'ABBCODE_GVIDEO_HELP' => ': [GVideo]URL video[/GVideo].',
'ABBCODE_YOUTUBE_MOVER' => 'Videoyu Youtube\'den ekleyin',
'ABBCODE_YOUTUBE_HELP' => ': [youtube]URL video[/youtube].',
'ABBCODE_LISTB_MOVER' => 'Madde işaretli liste',
'ABBCODE_LISTB_HELP' => ':
  • metin
Not: Madde işaretini oluşturmak için [*] kullanınız.',
'ABBCODE_LISTM_MOVER' => 'Sıralı liste',
'ABBCODE_LISTM_HELP' => ':
  • metin
Not: Madde işaretini oluşturmak için [*] kullanınız.',
'ABBCODE_HR_MOVER' => 'Üst çizgi',
'ABBCODE_HR_HELP' => ': [hr] Not: Metni ayırmak için bir üst satır çizgisi oluşturur.',
'ABBCODE_TEXTC_MOVER' => 'Yazı rengi',
'ABBCODE_TEXTC_HELP' => ': metin Not: HTML renklerini kullanabilirsiniz =#FF0000 yada color=red.',
'ABBCODE_TEXTS_MOVER' => 'Yazı boyutu',
'ABBCODE_TEXTS_HELP' => ': dev metin Not: Değer bir yüzde oranı olarak yorumlanacak.',
'ABBCODE_TEXTF_MOVER' => 'Yazı biçimi',
'ABBCODE_TEXTF_HELP' => ': [font=Tahoma]metin[/font].',
'ABBCODE_TEXTH_MOVER' => 'Vurgulanmış metin',
'ABBCODE_TEXTH_HELP' => ': [highlight=red]metin[/highlight] Not: HTML renklerini kullanabilirsiniz=#FF0000 yada color=red.',
'ABBCODE_CUT_MOVER' => 'Seçilmiş metni çıkart.',
'ABBCODE_COPY_MOVER' => 'Seçilmiş metni kopyala.',
'ABBCODE_PASTE_MOVER' => 'Kopyalanmış metni yapıştır.',
'ABBCODE_PLAIN_MOVER' => 'Seçilmiş metinden BBCode etiketlerini çıkart.',

// Wizard texts
'ABBCODE_ERROR' => 'Hata : ',
'ABBCODE_ERROR_TAG' => 'Kullanılan etikette beklenilmeyen hata : ',

'ABBCODE_GRAD_MIN_ERROR' => 'Lütfen ilk olarak metni seçiniz : ',
'ABBCODE_GRAD_MAX_ERROR' => 'Sadece 120 karekterden daha azına izin verilmektedir : ',

'ABBCODE_TABLE_STYLE' => 'Stil tablosunu giriniz' . '\n\n' . 'Örnek:width:50%;border:1px solid #CCCCCC;',
'ABBCODE_ROW_NUMBER' => 'Satırların sayısını giriniz',
'ABBCODE_ROW_ERROR' => 'Satırların sayısını yazmadınız',
'ABBCODE_ROW_STYLE' => 'Stil satırlarını giriniz' . '\n\n' . 'Örnek:border:1px solid #CCCCCC;',
'ABBCODE_CELL_NUMBER' => 'Hücrelerin sayısını giriniz',
'ABBCODE_CELL_ERROR' => 'Hücrelerin sayısını yazmadınız.',
'ABBCODE_CELL_STYLE' => 'Stil hücresini giriniz' . '\n\n' . 'Örnek:text-align:center;',

'ABBCODE_ID' => 'Kimliği gir (ID) :',
'ABBCODE_NOID' => '\n' . 'ID kimliğini yazmadınız.',
'ABBCODE_LINK' => 'Linki giriniz :',
'ABBCODE_DESC' => 'Link\'in açıklamasını giriniz',
'ABBCODE_NAME' => 'Açıklama',
'ABBCODE_NOLINK' => '\n' . 'Linki yazmadınız.',
'ABBCODE_NODESC' => '\n' . 'Açıklamayı yazmadınız.',
'ABBCODE_WIDTH' => 'Genişliği giriniz :',
'ABBCODE_WIDTH_NOTE' => '\n\n' . 'Not: Değer, bir yüzde oranı olarak ifade edilebilir.',
'ABBCODE_NOWIDTH' => '\n' . 'Genişliği yazmadınız.',
'ABBCODE_HEIGHT' => 'Yüksekliği giriniz :',
'ABBCODE_HEIGHT_NOTE' => '\n\n' . 'Not: Değer, bir yüzde oranı olarak ifade edilebilir.',
'ABBCODE_NOHEIGHT' => '\n' . 'Yüksekliği yazmadınız.',

'ABBCODE_ED2K_TAG' => ' ed2k links.',
'ABBCODE_URL_TAG' => ' page.',
'ABBCODE_WEB_TAG' => ' web.',
'ABBCODE_EMAIL_TAG' => ' email.',
'ABBCODE_IMG_TAG' => ' image.',
'ABBCODE_FLASH_TAG' => ' flash.',
'ABBCODE_VIDEO_TAG' => ' video.',
'ABBCODE_STREAM_TAG' => ' sound.',
'ABBCODE_RAM_TAG' => ' Real Media.',
'ABBCODE_RAM_TAG' => ' Stage6.',
'ABBCODE_GVIDEO_TAG' => ' Google Video.',
'ABBCODE_GVIDEO_NOTE' => '\n\n' . 'Örnek: http://video.google.com/videoplay?docid ... 3384451128.',
'ABBCODE_YOUTUBE_TAG' => ' Youtube.',
'ABBCODE_YOUTUBE_NOTE' => '\n\n' . 'Örnek: http://www.youtube.com/watch?v=aabbcc12.',

'SPOILER_SHOW' => 'Dökümanı Göster',
'SPOILER_HIDE' => 'Dökümanı Gizle',

));
[/code]
Kullanıcı avatarı
pikachu
Kayıtlı Kullanıcı
Mesajlar: 3062
Kayıt: 16.07.2006, 15:32
Konum: ağandon /
İletişim:

Re: prime_birthdate ve BBcode

Mesaj gönderen pikachu »

Kod: Tümünü seç

prime_birthdate.php


<?php
/**
*
* prime_birthdate [Turkish]
*
* @package language
* @version $Id: prime_birthdate.php,v 1.0.RC1 2007/08/27 18:10:00 primehalo Exp $
* @copyright (c) 2007 Ken F. Innes IV
* @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
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge($lang, array(
   'PRIME_BIRTHDATE_NAME'         => 'Doğum Günü',
   'PRIME_BIRTHDATE_ENTER'         => 'Lütfen doğum tarihinizi giriniz',
   'PRIME_BIRTHDATE_ERROR'         => 'Geçersiz bir tarih girdiniz.',
   'PRIME_BIRTHDATE_EMPTY'         => 'Devam etmek için doğum tarihinizi girmelisiniz.',
   'PRIME_BIRTHDATE_BABY'         => 'buraya kayıt olabilmek için yaşınız küçük.',
   'PRIME_BIRTHDATE_MIN'         => 'Minimum yaş',
   'PRIME_BIRTHDATE_MIN_EXPLAIN'   => 'Require user to be this age in order to register. Only functions if <em>Allow birthdays</em> is enabled.',
   'PRIME_BIRTHDATE_YEARS_OLD'      => 'Yaşında',
   'PRIME_BIRTHDATE_REQUIRE'      => 'gerekli',
   'PRIME_BIRTHDATE_LOCK'         => 'gerekli ve kilitli',

   'PRIME_BIRTHDATE_SHOW_AGE'         => 'Yaşı göster',
   'PRIME_BIRTHDATE_SHOW_AGE_EXPLAIN'   => 'eğer doğumgününüz herkese görünür durumdaysa belirt.',

   'PRIME_BIRTHDATE_SHOW_CONGRATS'         => 'Doğumgünü tebriklerini göster',
   'PRIME_BIRTHDATE_SHOW_CONGRATS_EXPLAIN'   => 'Sizin doğumgününüzde adınız tebrik listesinde görünecekse belirtir.',
));

?>
arkadaşlar çevirdim ancak notepad++ tarzı birşe kullanmadım ona göre. birde bir iki cümlenin anlamını tam çıkaramadım kafama göre yazdım. kullanıldığı yere göre siz düzeltirsiniz artık.
Cevapla

“3.0.x MOD Türkçeleştirme” sayfasına dön

Kimler çevrimiçi

Bu forumu görüntüleyen kullanıcılar: Hiç bir kayıtlı kullanıcı yok ve 6 misafir