You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(193) |
Nov
(393) |
Dec
(347) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(401) |
Feb
(232) |
Mar
(343) |
Apr
(129) |
May
(129) |
Jun
(116) |
Jul
(189) |
Aug
(129) |
Sep
(68) |
Oct
(172) |
Nov
(298) |
Dec
(148) |
| 2003 |
Jan
(264) |
Feb
(210) |
Mar
(322) |
Apr
(309) |
May
(234) |
Jun
(188) |
Jul
(215) |
Aug
(161) |
Sep
(234) |
Oct
(163) |
Nov
(110) |
Dec
(7) |
| 2004 |
Jan
(95) |
Feb
(107) |
Mar
(55) |
Apr
(3) |
May
(49) |
Jun
(35) |
Jul
(57) |
Aug
(43) |
Sep
(56) |
Oct
(40) |
Nov
(25) |
Dec
(21) |
| 2005 |
Jan
(93) |
Feb
(25) |
Mar
(22) |
Apr
(72) |
May
(45) |
Jun
(24) |
Jul
(29) |
Aug
(20) |
Sep
(50) |
Oct
(93) |
Nov
(69) |
Dec
(183) |
| 2006 |
Jan
(185) |
Feb
(143) |
Mar
(402) |
Apr
(260) |
May
(322) |
Jun
(367) |
Jul
(234) |
Aug
(299) |
Sep
(206) |
Oct
(288) |
Nov
(338) |
Dec
(307) |
| 2007 |
Jan
(296) |
Feb
(250) |
Mar
(261) |
Apr
(434) |
May
(539) |
Jun
(274) |
Jul
(440) |
Aug
(190) |
Sep
(128) |
Oct
(249) |
Nov
(86) |
Dec
(51) |
| 2008 |
Jan
(177) |
Feb
(67) |
Mar
(61) |
Apr
(48) |
May
(56) |
Jun
(97) |
Jul
(60) |
Aug
(64) |
Sep
(151) |
Oct
(79) |
Nov
(109) |
Dec
(123) |
| 2009 |
Jan
(70) |
Feb
(70) |
Mar
(73) |
Apr
(80) |
May
(22) |
Jun
(193) |
Jul
(191) |
Aug
(181) |
Sep
(120) |
Oct
(48) |
Nov
(24) |
Dec
|
|
From: Paul S. O. <ps...@us...> - 2002-03-03 22:53:14
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv16579
Modified Files:
posting.php
Log Message:
Fix incorrect setting of checkboxes on edit, bug #525244
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.148
retrieving revision 1.149
diff -C2 -r1.148 -r1.149
*** posting.php 23 Feb 2002 17:54:32 -0000 1.148
--- posting.php 3 Mar 2002 22:53:11 -0000 1.149
***************
*** 732,735 ****
--- 732,739 ----
$attach_sig = ( $post_info['enable_sig'] && $post_info['user_sig'] != "" ) ? TRUE : 0;
$user_sig = $post_info['user_sig'];
+
+ $html_on = ( $post_info['enable_html'] ) ? true : false;
+ $bbcode_on = ( $post_info['enable_bbcode'] ) ? true : false;
+ $smilies_on = ( $post_info['enable_smilies'] ) ? true : false;
}
else
***************
*** 779,783 ****
// Signature toggle selection
//
! if( $user_sig != "" )
{
$template->assign_block_vars("signature_checkbox", array());
--- 783,787 ----
// Signature toggle selection
//
! if( $user_sig != '' )
{
$template->assign_block_vars("signature_checkbox", array());
***************
*** 1011,1019 ****
"U_REVIEW_TOPIC" => ( $mode == 'reply' ) ? append_sid("posting.$phpEx?mode=topicreview&" . POST_TOPIC_URL . "=$topic_id") : "",
! "S_HTML_CHECKED" => (!$html_on) ? 'checked="checked"' : "",
! "S_BBCODE_CHECKED" => (!$bbcode_on) ? 'checked="checked"' : "",
! "S_SMILIES_CHECKED" => (!$smilies_on) ? 'checked="checked"' : "",
! "S_SIGNATURE_CHECKED" => ($attach_sig) ? 'checked="checked"' : "",
! "S_NOTIFY_CHECKED" => ($notify_user) ? 'checked="checked"' : "",
"S_TYPE_TOGGLE" => $topic_type_toggle,
"S_TOPIC_ID" => $topic_id,
--- 1015,1023 ----
"U_REVIEW_TOPIC" => ( $mode == 'reply' ) ? append_sid("posting.$phpEx?mode=topicreview&" . POST_TOPIC_URL . "=$topic_id") : "",
! "S_HTML_CHECKED" => ( !$html_on ) ? 'checked="checked"' : "",
! "S_BBCODE_CHECKED" => ( !$bbcode_on ) ? 'checked="checked"' : "",
! "S_SMILIES_CHECKED" => ( !$smilies_on ) ? 'checked="checked"' : "",
! "S_SIGNATURE_CHECKED" => ( $attach_sig ) ? 'checked="checked"' : "",
! "S_NOTIFY_CHECKED" => ( $notify_user ) ? 'checked="checked"' : "",
"S_TYPE_TOGGLE" => $topic_type_toggle,
"S_TOPIC_ID" => $topic_id,
|
|
From: Paul S. O. <ps...@us...> - 2002-03-03 19:28:48
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv17288/includes
Modified Files:
search.php
Log Message:
Change to count method in word_common ... problem seemed to exist on older PHP versions for some reason
Index: search.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/search.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** search.php 25 Feb 2002 01:00:48 -0000 1.12
--- search.php 3 Mar 2002 19:28:44 -0000 1.13
***************
*** 279,283 ****
global $db;
! $sql = ( $mode == "global" ) ? "SELECT COUNT(DISTINCT post_id) AS total_posts FROM " . SEARCH_MATCH_TABLE : "SELECT SUM(forum_posts) AS total_posts FROM " . FORUMS_TABLE;
if( !($result = $db->sql_query($sql)) )
{
--- 279,283 ----
global $db;
! $sql = ( $mode == "global" ) ? "SELECT COUNT(post_id) AS total_posts FROM " . SEARCH_MATCH_TABLE . " GROUP BY post_id" : "SELECT SUM(forum_posts) AS total_posts FROM " . FORUMS_TABLE;
if( !($result = $db->sql_query($sql)) )
{
|
|
From: Paul S. O. <ps...@us...> - 2002-03-03 16:51:32
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv2186/db/schemas
Modified Files:
mssql_basic.sql
Log Message:
Remove IDENTITY SET for forums
Index: mssql_basic.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mssql_basic.sql,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** mssql_basic.sql 25 Feb 2002 22:16:21 -0000 1.11
--- mssql_basic.sql 3 Mar 2002 16:51:27 -0000 1.12
***************
*** 83,92 ****
-- Forums
*/
- SET IDENTITY_INSERT phpbb_forums ON;
-
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_announce, auth_sticky, auth_pollcreate, auth_vote, auth_attachments) VALUES (1, 1, 'Test Forum 1', 'This is just a test forum, nothing special here.', '', 1, 1, 1, 1, '', 1, '', '', '', '', 1, 1, 3, 1, 1, 1, 3);
-
- SET IDENTITY_INSERT phpbb_forums OFF;
-
/*
--- 83,87 ----
|
|
From: Paul S. O. <ps...@us...> - 2002-03-03 15:38:25
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv13483 Modified Files: update_to_RC3.php Log Message: Add additional updates for MSSQL, thanks to Juan-Carlos for pointing the missing changes out ... please note, this introduces a DROP TABLE requirement for forums, ensure you read the INSTALL_RC3 before using this on MSSQL! Index: update_to_RC3.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/update_to_RC3.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** update_to_RC3.php 14 Feb 2002 22:42:49 -0000 1.14 --- update_to_RC3.php 3 Mar 2002 15:38:22 -0000 1.15 *************** *** 13,16 **** --- 13,19 ---- case 'mysql': case 'mysql4': + $sql[] = "ALTER TABLE " . RANKS_TABLE . " DROP + COLUMN rank_max"; + $sql[] = "ALTER TABLE " . USERS_TABLE . " ADD COLUMN user_session_time int(11) DEFAULT '0' NOT NULL, *************** *** 51,55 **** $sql[] = "CREATE INDEX user_session_time_" . $table_prefix . "users_index ON " . USERS_TABLE . " (user_session_time)"; ! $sql[] = "ALTER TABLE " . TOPICS_TABLE . " ADD COLUMN topic_first_post_id int4"; --- 54,58 ---- $sql[] = "CREATE INDEX user_session_time_" . $table_prefix . "users_index ON " . USERS_TABLE . " (user_session_time)"; ! $sql[] = "ALTER TABLE " . TOPICS_TABLE . " ADD COLUMN topic_first_post_id int4"; *************** *** 92,102 **** $sql[] = "CREATE INDEX [IX_" . $table_prefix . "users] ON [" . USERS_TABLE . "]([user_session_time]) ON [PRIMARY]"; ! $sql[] = "DROP INDEX " . TOPICS_TABLE . ".IX_" . $table_prefix . "topics"; $sql[] = "ALTER TABLE " . TOPICS_TABLE . " ADD ! topic_first_post_id int NOT NULL, ! CONSTRAINT [DF_" . $table_prefix . "topics_topic_first_post_id] DEFAULT (0) FOR [topic_first_post_id]"; $sql[] = "CREATE INDEX [IX_" . $table_prefix . "topics] ON [" . TOPICS_TABLE . "]([forum_id], [topic_type], [topic_first_post_id], [topic_last_post_id]) ON [PRIMARY]"; $sql[] = "ALTER TABLE " . THEMES_NAME_TABLE . " ADD --- 95,168 ---- $sql[] = "CREATE INDEX [IX_" . $table_prefix . "users] ON [" . USERS_TABLE . "]([user_session_time]) ON [PRIMARY]"; ! ! /* DROP FORUM TABLE -- if this may cause you problems you can safely ! comment it out, remember to manually remove the IDENTITY setting on ! the forum_id column */ ! $sql [] = "ALTER TABLE " . FORUMS_TABLE . " DROP ! CONSTRAINT [DF_" . $table_prefix . "forums_forum_posts], ! CONSTRAINT [DF_" . $table_prefix . "forums_forum_topics], ! CONSTRAINT [DF_" . $table_prefix . "forums_forum_last_post_id], ! CONSTRAINT [DF_" . $table_prefix . "forums_prune_enable], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_view], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_read], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_post], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_reply], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_edit], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_delete], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_sticky], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_announce], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_vote], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_pollcreate], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_attachments]"; ! $sql[] = "CREATE TABLE Tmp_" . FORUMS_TABLE . " ! (forum_id int NOT NULL, cat_id int NOT NULL, forum_name varchar(100) NOT NULL, forum_desc varchar(255) NULL, forum_status smallint NOT NULL, forum_order int NOT NULL, forum_posts int NOT NULL, forum_topics smallint NOT NULL, forum_last_post_id int NOT NULL, prune_next int NULL, prune_enable smallint NOT NULL, auth_view smallint NOT NULL, auth_read smallint NOT NULL, auth_post smallint NOT NULL, auth_reply smallint NOT NULL, auth_edit smallint NOT NULL, auth_delete smallint NOT NULL, auth_sticky smallint NOT NULL, auth_announce smallint NOT NULL, auth_vote smallint NOT NULL, auth_pollcreate smallint NOT NULL, auth_attachments smallint NOT NULL) ON [PRIMARY]"; ! $sql[] = "ALTER TABLE [Tmp_" . FORUMS_TABLE . "] WITH NOCHECK ADD ! CONSTRAINT [DF_" . $table_prefix . "forums_forum_posts] DEFAULT (0) FOR [forum_posts], ! CONSTRAINT [DF_" . $table_prefix . "forums_forum_topics] DEFAULT (0) FOR [forum_topics], ! CONSTRAINT [DF_" . $table_prefix . "forums_forum_last_post_id] DEFAULT (0) FOR [forum_last_post_id], ! CONSTRAINT [DF_" . $table_prefix . "forums_prune_enable] DEFAULT (0) FOR [prune_enable], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_view] DEFAULT (0) FOR [auth_view], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_read] DEFAULT (0) FOR [auth_read], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_post] DEFAULT (0) FOR [auth_post], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_reply] DEFAULT (0) FOR [auth_reply], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_edit] DEFAULT (0) FOR [auth_edit], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_delete] DEFAULT (0) FOR [auth_delete], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_sticky] DEFAULT (0) FOR [auth_sticky], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_announce] DEFAULT (0) FOR [auth_announce], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_vote] DEFAULT (0) FOR [auth_vote], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_pollcreate] DEFAULT (0) FOR [auth_pollcreate], ! CONSTRAINT [DF_" . $table_prefix . "forums_auth_attachments] DEFAULT (0) FOR [auth_attachments]"; ! $sql[] = "INSERT INTO Tmp_" . FORUMS_TABLE . " (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments) ! SELECT forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate, auth_attachments FROM " . FORUMS_TABLE . " TABLOCKX"; ! $sql[] = "DROP TABLE " . FORUMS_TABLE; ! $sql[] = "EXECUTE sp_rename N'Tmp_" . FORUMS_TABLE . "', N'" . FORUMS_TABLE . "', 'OBJECT'"; ! $sql[] = "ALTER TABLE " . FORUMS_TABLE . " ADD ! CONSTRAINT [PK_" . $table_prefix . "forums] PRIMARY KEY CLUSTERED (forum_id) ON [PRIMARY]"; ! $sql[] = "CREATE NONCLUSTERED INDEX [IX_" . $table_prefix . "forums] ! ON " . FORUMS_TABLE . " (cat_id, forum_order, forum_last_post_id) ON [PRIMARY]"; ! /* END OF DROP FORUM -- don't remove anything after this point! */ ! ! $sql[] = "DROP INDEX " . RANKS_TABLE . ".IX_" . $table_prefix . "ranks"; ! $sql[] = "ALTER TABLE " . RANKS_TABLE . " DROP ! COLUMN rank_max"; ! $sql[] = "CREATE INDEX [IX_" . $table_prefix . "ranks] ! ON [" . RANKS_TABLE . "]([rank_min], [rank_special]) ON [PRIMARY]"; ! $sql[] = "DROP INDEX " . TOPICS_TABLE . ".IX_" . $table_prefix . "topics"; $sql[] = "ALTER TABLE " . TOPICS_TABLE . " ADD ! topic_first_post_id int NULL, ! CONSTRAINT [DF_" . $table_prefix . "topics_topic_first_post_id] FOR [topic_first_post_id]"; $sql[] = "CREATE INDEX [IX_" . $table_prefix . "topics] ON [" . TOPICS_TABLE . "]([forum_id], [topic_type], [topic_first_post_id], [topic_last_post_id]) ON [PRIMARY]"; + + $sql[] = "ALTER TABLE " . SEARCH_WORD_TABLE . " DROP + CONSTRAINT [PK_" . $table_prefix . "search_wordlist]"; + $sql[] = "CREATE UNIQUE INDEX [IX_" . $table_prefix . "search_wordlist] + ON [" . SEARCH_WORD_TABLE . "]([word_text]) WITH IGNORE_DUP_KEY ON [PRIMARY]"; + $sql[] = "CREATE INDEX [IX_" . $table_prefix . "search_wordlist_1] + ON [" . SEARCH_WORD_TABLE . "]([word_common]) ON [PRIMARY]"; + + $sql[] = "CREATE INDEX [IX_" . $table_prefix . "search_wordmatch_1] + ON [" . SEARCH_MATCH_TABLE . "]([word_id]) ON [PRIMARY]"; $sql[] = "ALTER TABLE " . THEMES_NAME_TABLE . " ADD |
|
From: Paul S. O. <ps...@us...> - 2002-03-03 03:14:30
|
Update of /cvsroot/phpbb/phpBB2/language/lang_arabic In directory usw-pr-cvs1:/tmp/cvs-serv3209/language/lang_arabic Modified Files: lang_admin.php Log Message: Minor update Index: lang_admin.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** lang_admin.php 25 Feb 2002 14:49:51 -0000 1.2 --- lang_admin.php 3 Mar 2002 03:14:27 -0000 1.3 *************** *** 702,706 **** $lang['NoFTP_config'] = "áÞÏ ÝÔáÊ ãÍÇæáÉ äÞá ãáÝ ÇáÇÚÏÇÏ Çáì ãæÞÚ ÇáãäÊÏì. ÇáÑÌÇÁ ÓÍÈ ãáÝ ÇáÇÚÏÇÏ æÇÑÓÇáå Çáì ãßÇäå ÇáÕÍíÍ íÏæíÇ."; ! $lang['Install'] = "ÊÑßíÈ ÌÏíÏ" $lang['Upgrade'] = "ÊÍÏíË"; --- 702,706 ---- $lang['NoFTP_config'] = "áÞÏ ÝÔáÊ ãÍÇæáÉ äÞá ãáÝ ÇáÇÚÏÇÏ Çáì ãæÞÚ ÇáãäÊÏì. ÇáÑÌÇÁ ÓÍÈ ãáÝ ÇáÇÚÏÇÏ æÇÑÓÇáå Çáì ãßÇäå ÇáÕÍíÍ íÏæíÇ."; ! $lang['Install'] = "ÊÑßíÈ ÌÏíÏ"; $lang['Upgrade'] = "ÊÍÏíË"; *************** *** 716,718 **** // ------------------------------------------------- ! ?> --- 716,718 ---- // ------------------------------------------------- ! ?> \ No newline at end of file |
|
From: Paul S. O. <ps...@us...> - 2002-03-03 00:33:34
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver In directory usw-pr-cvs1:/tmp/cvs-serv8240/templates/subSilver Modified Files: modcp_split.tpl Log Message: More minor style fixes Index: modcp_split.tpl =================================================================== RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/modcp_split.tpl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** modcp_split.tpl 28 Feb 2002 14:08:01 -0000 1.5 --- modcp_split.tpl 3 Mar 2002 00:33:31 -0000 1.6 *************** *** 25,29 **** </tr> <tr> ! <td class="cat" colspan="3" height="28"> <table width="60%" cellspacing="0" cellpadding="0" border="0" align="center"> <tr> --- 25,29 ---- </tr> <tr> ! <td class="catHead" colspan="3" height="28"> <table width="60%" cellspacing="0" cellpadding="0" border="0" align="center"> <tr> |
|
From: Paul S. O. <ps...@us...> - 2002-03-02 23:44:35
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv29953/templates/subSilver
Modified Files:
modcp_viewip.tpl
Log Message:
Fix a minor style issue
Index: modcp_viewip.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/modcp_viewip.tpl,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** modcp_viewip.tpl 1 Mar 2002 17:05:21 -0000 1.7
--- modcp_viewip.tpl 2 Mar 2002 23:44:32 -0000 1.8
***************
*** 11,15 ****
</tr>
<tr>
! <td class="cat" height="28"><span class="cattitle"><b>{L_THIS_POST_IP}</b></span></td>
</tr>
<tr>
--- 11,15 ----
</tr>
<tr>
! <td class="catHead" height="28"><span class="cattitle"><b>{L_THIS_POST_IP}</b></span></td>
</tr>
<tr>
***************
*** 25,29 ****
</tr>
<tr>
! <td class="cat" height="28"><span class="cattitle"><b>{L_OTHER_USERS}</b></span></td>
</tr>
<!-- BEGIN userrow -->
--- 25,29 ----
</tr>
<tr>
! <td class="catHead" height="28"><span class="cattitle"><b>{L_OTHER_USERS}</b></span></td>
</tr>
<!-- BEGIN userrow -->
***************
*** 41,45 ****
<!-- END userrow -->
<tr>
! <td class="cat" height="28"><span class="cattitle"><b>{L_OTHER_IPS}</b></span></td>
</tr>
<!-- BEGIN iprow -->
--- 41,45 ----
<!-- END userrow -->
<tr>
! <td class="catHead" height="28"><span class="cattitle"><b>{L_OTHER_IPS}</b></span></td>
</tr>
<!-- BEGIN iprow -->
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 21:54:28
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv2493/templates/subSilver
Modified Files:
viewtopic_body.tpl
Log Message:
Minor update to layout
Index: viewtopic_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/viewtopic_body.tpl,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -r1.27 -r1.28
*** viewtopic_body.tpl 28 Feb 2002 14:08:02 -0000 1.27
--- viewtopic_body.tpl 2 Mar 2002 21:54:24 -0000 1.28
***************
*** 61,70 ****
<tr>
<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG}
! {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}</td><td> </td><td valign="top" nowrap="nowrap"><script language="JavaScript" type="text/javascript"><!--
if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 )
! document.write('{postrow.ICQ_ADD_IMG}');
else
! document.write('<div style="position:relative"><div style="position:absolute">{postrow.ICQ_ADD_IMG}</div><div style="position:absolute;left:3px">{postrow.ICQ_STATUS_IMG}</div></div>');
//--></script><noscript>{postrow.ICQ_ADD_IMG}</noscript></td>
--- 61,70 ----
<tr>
<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG}
! {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}<script language="JavaScript" type="text/javascript"><!--
if ( navigator.userAgent.toLowerCase().indexOf('mozilla') != -1 && navigator.userAgent.indexOf('5.') == -1 )
! document.write(' {postrow.ICQ_ADD_IMG}');
else
! document.write('</td><td> </td><td valign="top" nowrap="nowrap"><div style="position:relative"><div style="position:absolute">{postrow.ICQ_ADD_IMG}</div><div style="position:absolute;left:3px">{postrow.ICQ_STATUS_IMG}</div></div>');
//--></script><noscript>{postrow.ICQ_ADD_IMG}</noscript></td>
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 20:46:32
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver/admin
In directory usw-pr-cvs1:/tmp/cvs-serv16817/templates/subSilver/admin
Modified Files:
page_header.tpl
Log Message:
Fix error in import, bug #524906
Index: page_header.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/admin/page_header.tpl,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** page_header.tpl 2 Feb 2002 18:12:30 -0000 1.8
--- page_header.tpl 2 Mar 2002 20:46:27 -0000 1.9
***************
*** 4,7 ****
--- 4,8 ----
{META}
<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
+ <link rel="stylesheet" href="../{T_HEAD_STYLESHEET}" type="text/css" />
<style type="text/css">
<!--
***************
*** 218,222 ****
-->
</style>
-
<title>{SITENAME} - {L_PHPBB_ADMIN}</title>
</head>
--- 219,222 ----
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 20:46:13
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv16753/templates/subSilver
Modified Files:
subSilver.css
Log Message:
Fix error in import, bug #524906
Index: subSilver.css
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/subSilver.css,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** subSilver.css 2 Feb 2002 18:12:15 -0000 1.5
--- subSilver.css 2 Mar 2002 20:46:09 -0000 1.6
***************
*** 211,213 ****
/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
! @import url("templates/subSilver/formIE.css");
--- 211,213 ----
/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
! @import url("formIE.css");
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:21:19
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver
In directory usw-pr-cvs1:/tmp/cvs-serv12992/templates/subSilver
Modified Files:
profile_add_body.tpl
Log Message:
Altered the block structure slightly for avatars
Index: profile_add_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/profile_add_body.tpl,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** profile_add_body.tpl 1 Mar 2002 18:04:26 -0000 1.14
--- profile_add_body.tpl 2 Mar 2002 18:21:16 -0000 1.15
***************
*** 1,30 ****
<form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post">
{ERROR_BOX}
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
! </tr>
</table>
! <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
<tr>
! <th class="thHead" colspan="2" height="25" valign="middle">{L_REGISTRATION_INFO}</th>
</tr>
<tr>
! <td class="row2" colspan="2"><span class="gensmall">{L_ITEMS_REQUIRED}</span></td>
</tr>
<tr>
! <td class="row1" width="38%"><span class="gen">{L_USERNAME}: *</span></td>
! <td class="row2">
! <input type="text" class="post" style="width: 200px" name="username" size="25" maxlength="40" value="{USERNAME}" />
! </td>
</tr>
<tr>
! <td class="row1"><span class="gen">{L_EMAIL_ADDRESS}: *</span></td>
! <td class="row2">
! <input type="text" class="post" style="width: 200px" name="email" size="25" maxlength="255" value="{EMAIL}" />
! </td>
</tr>
<!-- BEGIN edit_profile -->
--- 1,27 ----
<form action="{S_PROFILE_ACTION}" {S_FORM_ENCTYPE} method="post">
+
{ERROR_BOX}
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
! </tr>
</table>
! <table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
<tr>
! <th class="thHead" colspan="2" height="25" valign="middle">{L_REGISTRATION_INFO}</th>
</tr>
<tr>
! <td class="row2" colspan="2"><span class="gensmall">{L_ITEMS_REQUIRED}</span></td>
</tr>
<tr>
! <td class="row1" width="38%"><span class="gen">{L_USERNAME}: *</span></td>
! <td class="row2"><input type="text" class="post" style="width:200px" name="username" size="25" maxlength="40" value="{USERNAME}" /></td>
</tr>
<tr>
! <td class="row1"><span class="gen">{L_EMAIL_ADDRESS}: *</span></td>
! <td class="row2"><input type="text" class="post" style="width:200px" name="email" size="25" maxlength="255" value="{EMAIL}" /></td>
</tr>
<!-- BEGIN edit_profile -->
***************
*** 215,278 ****
<td class="catSides" colspan="2" height="28"> </td>
</tr>
! <!-- BEGIN avatarblock -->
<tr>
<th class="thSides" colspan="2" height="12" valign="middle">{L_AVATAR_PANEL}</th>
</tr>
- <tr align="center">
- <td class="row1" colspan="2">
- <table width="70%" cellspacing="2" cellpadding="0" border="0">
- <tr>
- <td width="65%"><span class="gensmall">{L_AVATAR_EXPLAIN}</span></td>
- <td align="center"><span class="gensmall">{L_CURRENT_IMAGE}</span><br />
- {AVATAR}<br />
- <input type="checkbox" name="avatardel" />
- <span class="gensmall">{L_DELETE_AVATAR}</span></td>
- </tr>
- </table>
- </td>
- </tr>
- <!-- BEGIN avatarupload -->
- <!-- BEGIN avatarfileupload -->
<tr>
! <td class="row1"><span class="gen">{L_UPLOAD_AVATAR_FILE}:</span></td>
! <td class="row2">
! <input type="hidden" name="MAX_FILE_SIZE" value="{AVATAR_SIZE}" />
! <input type="file" name="avatar" class="post"style="width: 200px" />
! </td>
</tr>
! <!-- END avatarfileupload -->
<tr>
! <td class="row1"><span class="gen">{L_UPLOAD_AVATAR_URL}:</span><br />
! <span class="gensmall">{L_UPLOAD_AVATAR_URL_EXPLAIN}</span></td>
! <td class="row2">
! <input type="text" name="avatarurl" size="40" class="post"style="width: 200px" />
! </td>
</tr>
! <!-- END avatarupload -->
! <!-- BEGIN avatarremote -->
<tr>
! <td class="row1"><span class="gen">{L_LINK_REMOTE_AVATAR}:</span><br />
! <span class="gensmall">{L_LINK_REMOTE_AVATAR_EXPLAIN}</span></td>
! <td class="row2">
! <input type="text" name="avatarremoteurl" size="40" class="post"style="width: 200px" />
! </td>
</tr>
! <!-- END avatarremote -->
! <!-- BEGIN avatargallery -->
<tr>
! <td class="row1"><span class="gen">{L_AVATAR_GALLERY}:</span></td>
! <td class="row2">
! <input type="submit" name="avatargallery" value="{L_SHOW_GALLERY}" class="liteoption" />
! </td>
</tr>
! <!-- END avatargallery -->
! <!-- END avatarblock -->
<tr>
! <td class="catBottom" colspan="2" align="center" height="28">{S_HIDDEN_FIELDS}
! <input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" />
!
! <input type="reset" value="{L_RESET}" name="reset" class="liteoption" />
! </td>
</tr>
! </table>
</form>
--- 212,256 ----
<td class="catSides" colspan="2" height="28"> </td>
</tr>
! <!-- BEGIN avatar_block -->
<tr>
<th class="thSides" colspan="2" height="12" valign="middle">{L_AVATAR_PANEL}</th>
</tr>
<tr>
! <td class="row1" colspan="2"><table width="70%" cellspacing="2" cellpadding="0" border="0" align="center">
! <tr>
! <td width="65%"><span class="gensmall">{L_AVATAR_EXPLAIN}</span></td>
! <td align="center"><span class="gensmall">{L_CURRENT_IMAGE}</span><br />{AVATAR}<br /><input type="checkbox" name="avatardel" /> <span class="gensmall">{L_DELETE_AVATAR}</span></td>
! </tr>
! </table></td>
</tr>
! <!-- BEGIN avatar_local_upload -->
<tr>
! <td class="row1"><span class="gen">{L_UPLOAD_AVATAR_FILE}:</span></td>
! <td class="row2"><input type="hidden" name="MAX_FILE_SIZE" value="{AVATAR_SIZE}" /><input type="file" name="avatar" class="post" style="width:200px" /></td>
</tr>
! <!-- END avatar_local_upload -->
! <!-- BEGIN avatar_remote_upload -->
<tr>
! <td class="row1"><span class="gen">{L_UPLOAD_AVATAR_URL}:</span><br /><span class="gensmall">{L_UPLOAD_AVATAR_URL_EXPLAIN}</span></td>
! <td class="row2"><input type="text" name="avatarurl" size="40" class="post" style="width:200px" /></td>
</tr>
! <!-- END avatar_remote_upload -->
! <!-- BEGIN avatar_remote_link -->
<tr>
! <td class="row1"><span class="gen">{L_LINK_REMOTE_AVATAR}:</span><br /><span class="gensmall">{L_LINK_REMOTE_AVATAR_EXPLAIN}</span></td>
! <td class="row2"><input type="text" name="avatarremoteurl" size="40" class="post" style="width:200px" /></td>
</tr>
! <!-- END avatar_remote_link -->
! <!-- BEGIN avatar_local_gallery -->
<tr>
! <td class="row1"><span class="gen">{L_AVATAR_GALLERY}:</span></td>
! <td class="row2"><input type="submit" name="avatargallery" value="{L_SHOW_GALLERY}" class="liteoption" /></td>
! </tr>
! <!-- END avatar_local_gallery -->
! <!-- END avatar_block -->
! <tr>
! <td class="catBottom" colspan="2" align="center" height="28">{S_HIDDEN_FIELDS}<input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" name="reset" class="liteoption" /></td>
</tr>
! </table>
!
</form>
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:14:01
|
Update of /cvsroot/phpbb/phpBB2/language/lang_italian/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_italian/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/admin_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_activate.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- admin_activate.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Account Nuovo Utente
+
Ciao,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/admin_welcome_activated.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_activated.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Account Attivato
+
Ciao {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/admin_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_inactive.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Benvenuto nel forum di {SITENAME}
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** coppa_welcome_inactive.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Benvenuto nel forum di {SITENAME}
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/group_added.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_added.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- group_added.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Sei stato aggiunto a questa gruppo utenti
+
Congratulazioni,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/group_approved.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_approved.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- group_approved.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: La tua richiesta è stata approvata
+
Congratulazioni,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/group_request.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_request.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- group_request.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: C'è una richiesta di iscrizione al tuo gruppo
+
Caro {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/privmsg_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** privmsg_notify.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- privmsg_notify.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Hai un nuovo messaggio privato
+
Ciao {USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/topic_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** topic_notify.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- topic_notify.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Notifica di risposta all'argomento - {TOPIC_TITLE}
+
Ciao {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/user_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- user_activate.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Riattiva il tuo account!
+
Ciao {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/user_activate_passwd.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate_passwd.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- user_activate_passwd.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Attivazione nuova password
+
Ciao {USERNAME}
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/user_welcome.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- user_welcome.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Benvenuto nel forum di {SITENAME}
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_italian/email/user_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome_inactive.tpl 14 Jan 2002 22:44:25 -0000 1.1
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Benvenuto nel forum di {SITENAME}
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:14:00
|
Update of /cvsroot/phpbb/phpBB2/language/lang_hungarian/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_hungarian/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/admin_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_activate.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- admin_activate.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Új felhasználói azonosító
+
Helló,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/admin_welcome_activated.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_activated.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Azonosító aktiválva
+
Helló {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/admin_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_inactive.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Üdvözöljük a {SITENAME} fórumán
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** coppa_welcome_inactive.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Üdvözöljük a {SITENAME} fórumán
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/group_added.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_added.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- group_added.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Sikeresen csatlakozott a csoporthoz
+
Gratulálunk,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/group_approved.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_approved.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- group_approved.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: A kérése elfogadva
+
Gratulálunk,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/group_request.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_request.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- group_request.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: A request to join your group has been made
+
Kedves {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/privmsg_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** privmsg_notify.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- privmsg_notify.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Új privát üzenete érkezett
+
Helló {USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/topic_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** topic_notify.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- topic_notify.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Téma hozzászólás-értesítés - {TOPIC_TITLE}
+
Helló {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/user_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- user_activate.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Aktiválja újra az azonosítóját!
+
Helló {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/user_activate_passwd.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate_passwd.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- user_activate_passwd.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Új jelszó aktiválása
+
Helló {USERNAME},
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/user_welcome.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- user_welcome.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Üdvözöljük a {SITENAME} fórumán
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/email/user_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome_inactive.tpl 15 Jan 2002 11:50:59 -0000 1.1
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Üdvözöljük a {SITENAME} fórumán
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:59
|
Update of /cvsroot/phpbb/phpBB2/language/lang_hungarian In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_hungarian Modified Files: lang_main.php Log Message: Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes! Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_hungarian/lang_main.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** lang_main.php 4 Feb 2002 13:34:50 -0000 1.5 --- lang_main.php 2 Mar 2002 18:13:24 -0000 1.6 *************** *** 44,52 **** //setlocale(LC_ALL, "en"); ! $lang['TRANSLATION_INFO'] = "Magyar fordítás © 2002 <a class=\"copyright\"href=\"mailto:ma...@ex...\">Egerváry Gergely</a>"; $lang['ENCODING'] = "iso-8859-2"; ! $lang['DIRECTION'] = "LTR"; ! $lang['LEFT'] = "LEFT"; ! $lang['RIGHT'] = "RIGHT"; $lang['DATE_FORMAT'] = "Y M d"; // This should be changed to the default date format for your language, php date() format --- 44,52 ---- //setlocale(LC_ALL, "en"); ! $lang['TRANSLATION_INFO'] = 'Magyar fordítás © 2002 <a class="copyright" href="mailto:ma...@ex...">Egerváry Gergely</a>'; $lang['ENCODING'] = "iso-8859-2"; ! $lang['DIRECTION'] = "ltr"; ! $lang['LEFT'] = "left"; ! $lang['RIGHT'] = "right"; $lang['DATE_FORMAT'] = "Y M d"; // This should be changed to the default date format for your language, php date() format |
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_finnish/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_finnish/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/admin_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_activate.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- admin_activate.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Uusi käyttäjätunnus
+
Tervehdys,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/admin_welcome_activated.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_activated.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Käyttäjätunnus aktivoitu
+
Tervehdys {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/admin_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_inactive.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Tervetuloa {SITENAME} Foorumeihin
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** coppa_welcome_inactive.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Tervetuloa {SITENAME} Foorumeihin
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/group_added.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_added.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- group_added.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Sinut on lisätty tähän käyttäjäryhmään
+
Onneksi olkoon,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/group_approved.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_approved.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- group_approved.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Hakemuksesi on hyväksytty
+
Onneksi olkoon,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/group_request.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_request.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- group_request.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ryhmään on tehty jäseneksi liittymispyyntö
+
Arvoisa {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/privmsg_notify.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** privmsg_notify.tpl 13 Jan 2002 21:44:22 -0000 1.2
--- privmsg_notify.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Uusi yksityinen viesti on saapunut
+
Tervehdys {USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/topic_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** topic_notify.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- topic_notify.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ilmoitus vastauksesta aiheeseen - {TOPIC_TITLE}
+
Tervehdys {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/user_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- user_activate.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Aktivoi uudelleen käyttäjätunnuksesi!
+
Tervehdys {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/user_activate_passwd.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_activate_passwd.tpl 8 Jan 2002 13:00:33 -0000 1.2
--- user_activate_passwd.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Uuden salasanan aktivointi
+
Tervehdys {USERNAME}
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/user_welcome.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome.tpl 26 Dec 2001 23:52:58 -0000 1.1
--- user_welcome.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Tervetuloa {SITENAME} Foorumeihin
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/email/user_welcome_inactive.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_welcome_inactive.tpl 8 Jan 2002 13:00:33 -0000 1.2
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Tervetuloa {SITENAME} Foorumeihin
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_chinese_traditional_taiwan/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/admin_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_activate.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- admin_activate.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ·sªº·|û±b¸¹
+
±z¦n,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/admin_welcome_activated.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_activated.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ±b¸¹¤w¸g±Ò¥Î
+
¿Ë·Rªº {USERNAME} ±z¦n,
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/admin_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_inactive.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: wªï¨Ó¨ì {SITENAME} °Q½×°Ï
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** coppa_welcome_inactive.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: wªï¨Ó¨ì {SITENAME} °Q½×°Ï
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/group_added.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_added.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- group_added.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ±z¤w¸g³Q¥[¤J³oÓ·|û¸s²Õ
+
®¥³ß±z,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/group_approved.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_approved.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- group_approved.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ±zªº½Ð¨D¤w¸gÀò±o§åã
+
®¥³ß±z,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/group_request.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_request.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- group_request.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ¦³¤@Ó·|û¥Ó½Ð¥[¤J±zªº¸s²Õ
+
¿Ë·Rªº {GROUP_MODERATOR} ±z¦n,
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/privmsg_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** privmsg_notify.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- privmsg_notify.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: "±z¦³·sªº¨p¤H°T®§
+
¿Ë·Rªº {USERNAME} ±z¦n,
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/topic_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** topic_notify.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- topic_notify.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ¥DÃD¦^Âгqª¾ - {TOPIC_TITLE}
+
¿Ë·Rªº {USERNAME} ±z¦n,
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/user_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- user_activate.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ±zªº±b¸¹¤w¸g«ì´_±Ò¥Î!
+
¿Ë·Rªº {USERNAME} ±z¦n,
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/user_activate_passwd.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate_passwd.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- user_activate_passwd.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ·sªº±K½X±Ò¥Î
+
¿Ë·Rªº {USERNAME} ±z¦n,
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/user_welcome.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- user_welcome.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: wªï¨Ó¨ì {SITENAME} °Q½×°Ï
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_chinese_traditional_taiwan/email/user_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome_inactive.tpl 28 Feb 2002 14:18:52 -0000 1.1
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: wªï¨Ó¨ì {SITENAME} °Q½×°Ï
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_finnish In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_finnish Modified Files: lang_main.php Log Message: Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes! Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_finnish/lang_main.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** lang_main.php 14 Feb 2002 16:02:13 -0000 1.7 --- lang_main.php 2 Mar 2002 18:13:23 -0000 1.8 *************** *** 25,46 **** // ! ! // ! // The format of this file is: ! // ! // ---> $lang['message'] = "text"; ! // ! // You should also try to set a locale and a character ! // encoding (plus direction). The encoding and direction ! // will be sent to the template. The locale may or may ! // not work, it's dependent on OS support and the syntax ! // varies ... give it your best guess! ! // ! ! //setlocale(LC_ALL, "en"); $lang['ENCODING'] = "iso-8859-1"; ! $lang['DIRECTION'] = "LTR"; ! $lang['LEFT'] = "LEFT"; ! $lang['RIGHT'] = "RIGHT"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format --- 25,33 ---- // ! //setlocale(LC_ALL, "fi"); $lang['ENCODING'] = "iso-8859-1"; ! $lang['DIRECTION'] = "ltr"; ! $lang['LEFT'] = "left"; ! $lang['RIGHT'] = "right"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format |
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_greek/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_greek/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/admin_activate.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin_activate.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- admin_activate.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ëïãáñéáóìüò íÝïõ ÷ñÞóôç
+
Ãåéá óáò,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/admin_welcome_activated.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin_welcome_activated.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ï ëïãáñéáóìüò ÅíåñãïðïéÞèçêå
+
Ãåéá óáò {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/admin_welcome_inactive.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin_welcome_inactive.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ôï {SITENAME} óáò êáëùóïñßæåé óôçí äçìüóéá óõæÞôçóç ôïõ
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** coppa_welcome_inactive.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ôï {SITENAME} óáò êáëùóïñßæåé óôçí äçìüóéá óõæÞôçóç ôïõ
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/group_added.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** group_added.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- group_added.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ¸÷åôå ðñïóôåèåß óôçí ëßóôá ÷ñçóôþí áõôÞò ôçò ïìÜäáò
+
Óõã÷áñçôÞñéá,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/group_approved.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** group_approved.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- group_approved.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ç áßôçóç óáò åãêñßèçêå
+
Óõã÷áñçôÞñéá,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/group_request.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** group_request.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- group_request.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ¸ëÞöèç áßôçóç Ýíôáîçò óôçí ïìÜäá óáò
+
ÁãáðçôÝ-ç {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/privmsg_notify.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** privmsg_notify.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- privmsg_notify.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ¸íá íÝï ðñïóùðéêü ìÞíõìá áöß÷èç
+
Ãåéá óáò {USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/topic_notify.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** topic_notify.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- topic_notify.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ãíùóôïðïßçóç áðÜíôçóçò óå È.Åíüôçôá - {TOPIC_TITLE}
+
Ãåéá óáò {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/user_activate.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_activate.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- user_activate.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ÅðáíåñãïðïéÞóôå ôïí ëïãáñéáóìü óáò !
+
Ãåéá óáò {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/user_activate_passwd.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_activate_passwd.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- user_activate_passwd.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Åíåñãïðïßçóç íÝïõ êùäéêïý
+
Ãåéá óáò {USERNAME}
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/user_welcome.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_welcome.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- user_welcome.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ôï {SITENAME} óáò êáëùóïñßæåé óôçí äçìüóéá óõæÞôçóç ôïõ
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_greek/email/user_welcome_inactive.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_welcome_inactive.tpl 5 Feb 2002 00:12:39 -0000 1.2
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ôï {SITENAME} óáò êáëùóïñßæåé óôçí äçìüóéá óõæÞôçóç ôïõ
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_french In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_french Modified Files: lang_main.php Log Message: Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes! Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/lang_main.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** lang_main.php 13 Feb 2002 22:26:02 -0000 1.4 --- lang_main.php 2 Mar 2002 18:13:24 -0000 1.5 *************** *** 26,46 **** - // - // The format of this file is: - // - // ---> $lang['message'] = "text"; - // - // You should also try to set a locale and a character - // encoding (plus direction). The encoding and direction - // will be sent to the template. The locale may or may - // not work, it's dependent on OS support and the syntax - // varies ... give it your best guess! - // - // setlocale(LC_ALL, "fr"); $lang['ENCODING'] = "ISO-8859-1"; ! $lang['DIRECTION'] = "LTR"; ! $lang['LEFT'] = "GAUCHE"; ! $lang['RIGHT'] = "DROITE"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format --- 26,34 ---- // setlocale(LC_ALL, "fr"); $lang['ENCODING'] = "ISO-8859-1"; ! $lang['DIRECTION'] = "ltr"; // do not translate this, it's the Left to Right direction of text ! $lang['LEFT'] = "left"; // do not translate this, it's the normal 'left' direction of text ! $lang['RIGHT'] = "right"; // do not translate this, it's the normal 'right' direction of text $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format |
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_arabic/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_arabic/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/admin_activate.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin_activate.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- admin_activate.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ãÔÊÑß ÌÏíÏ
+
ãÑÍÈÇ,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/admin_welcome_activated.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin_welcome_activated.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Êã ÊÔÛíá ÇáÇÔÊÑÇß
+
ãÑÍÈÇ {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/admin_welcome_inactive.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin_welcome_inactive.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ÃåáÇ æÓåáÇ Èßã Ýí ãäÊÏì {SITENAME}
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** coppa_welcome_inactive.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ÃåáÇ æÓåáÇ Èßã Ýí ãäÊÏì {SITENAME}
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/group_added.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** group_added.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- group_added.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Êã ÇÖÇÝÊß ááãÌãæÚÉ
+
ãÈÑæß,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/group_approved.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** group_approved.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- group_approved.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ÊãÊ ÇáãæÇÝÞÉ Úáì ØáÈß
+
ãÈÑæß,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/group_request.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** group_request.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- group_request.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Êã ÊÞÏíã ØáÈß ááÇÔÊÑÇß Ýí ÇáãÌãæÚÉ
+
ÇáÓíÏ/É {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/privmsg_notify.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** privmsg_notify.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- privmsg_notify.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: áÞÏ æÕáÊ ÑÓÇáÉ ÎÇÕÉ
+
ãÑÍÈÇ {USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/topic_notify.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** topic_notify.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- topic_notify.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ÇáÊÐßíÑ ÈÇáÑÏæÏ Úáì ÇáãæÇÖíÚ - {TOPIC_TITLE}
+
ãÑÍÈÇ {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/user_activate.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_activate.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- user_activate.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: v
+
ãÑÍÈÇ {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/user_activate_passwd.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_activate_passwd.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- user_activate_passwd.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: New password activation
+
ãÑÍÈÇ {USERNAME}
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/user_welcome.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_welcome.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- user_welcome.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ÃåáÇ æÓåáÇ Èßã Ýí ãäÊÏì {SITENAME}
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_arabic/email/user_welcome_inactive.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** user_welcome_inactive.tpl 25 Feb 2002 14:49:50 -0000 1.2
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.3
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: ÃåáÇ æÓåáÇ Èßã Ýí ãäÊÏì {SITENAME}
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_french/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_french/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/admin_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_activate.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- admin_activate.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Nouveau compte utilisateur
+
Hello,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/admin_welcome_activated.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_activated.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Compte activé
+
Hello {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/admin_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_inactive.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Bienvenue sur les Forums {SITENAME}
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** coppa_welcome_inactive.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Bienvenue sur les Forums {SITENAME}
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/group_added.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_added.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- group_added.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Vous avez été rajouté à ce groupe d'utilisateurs
+
Félicitations,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/group_approved.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_approved.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- group_approved.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Votre requête a été approuvée
+
Félicitations,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/group_request.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_request.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- group_request.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Une requête d'adhésion à votre groupe a été faites
+
Cher {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/privmsg_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** privmsg_notify.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- privmsg_notify.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Un Nouveau Message Privé vient d'arriver
+
Hello {USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/topic_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** topic_notify.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- topic_notify.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Notification de Réponse au Sujet - {TOPIC_TITLE}
+
Bonjour {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/user_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- user_activate.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Réactivez votre compte !
+
Bonjour {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/user_activate_passwd.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate_passwd.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- user_activate_passwd.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Activation d'un nouveau mot de passe
+
Bonjour {USERNAME}
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/user_welcome.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- user_welcome.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Bienvenue sur les Forums {SITENAME}
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_french/email/user_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome_inactive.tpl 1 Jan 2002 01:39:35 -0000 1.1
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Bienvenue sur les Forums {SITENAME}
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_danish/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_danish/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/admin_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_activate.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- admin_activate.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Genaktiver venligst din konto!
+
Hej,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/admin_welcome_activated.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_activated.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Konto aktiveret
+
Hej {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/admin_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_inactive.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Velkommen til {SITENAME} Forum
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** coppa_welcome_inactive.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Velkommen til {SITENAME} Forum
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/group_added.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_added.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- group_added.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Du er nu tilføjet til denne bruger gruppe
+
Tillykke,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/group_approved.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_approved.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- group_approved.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Din tilmelding er blevet godkendt
+
Tillykke,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/group_request.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_request.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- group_request.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: En bruger ønsker at tilmelde sig til din gruppe
+
Kære {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/privmsg_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** privmsg_notify.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- privmsg_notify.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Ny Privat besked er ankommet
+
Hej {USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/topic_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** topic_notify.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- topic_notify.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Emnet er besvaret - {TOPIC_TITLE}
+
Hej {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/user_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- user_activate.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Genaktiver venligst din konto!
+
Hej {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/user_activate_passwd.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate_passwd.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- user_activate_passwd.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Aktivering af nyt kodeord
+
Hej {USERNAME}
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/user_welcome.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- user_welcome.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Velkommen til {SITENAME} Forum
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/email/user_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome_inactive.tpl 23 Jan 2002 19:05:15 -0000 1.1
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Velkommen til {SITENAME} Forum
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_danish In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_danish Modified Files: lang_main.php Log Message: Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes! Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_danish/lang_main.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** lang_main.php 16 Feb 2002 15:45:06 -0000 1.4 --- lang_main.php 2 Mar 2002 18:13:23 -0000 1.5 *************** *** 34,40 **** //setlocale(LC_ALL, "en"); $lang['ENCODING'] = "iso-8859-1"; ! $lang['DIRECTION'] = "LTR"; ! $lang['LEFT'] = "VENSTRE"; ! $lang['RIGHT'] = "HØJRE"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format --- 34,40 ---- //setlocale(LC_ALL, "en"); $lang['ENCODING'] = "iso-8859-1"; ! $lang['DIRECTION'] = "ltr"; ! $lang['LEFT'] = "left"; ! $lang['RIGHT'] = "right"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format *************** *** 994,996 **** // ------------------------------------------------- ! ?> --- 994,996 ---- // ------------------------------------------------- ! ?> \ No newline at end of file |
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_english/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/admin_activate.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** admin_activate.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- admin_activate.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: New user account
+
Hello,
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/admin_welcome_activated.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** admin_welcome_activated.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Account Activated
+
Hello {USERNAME},
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/admin_welcome_inactive.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** admin_welcome_inactive.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Welcome to {SITENAME} Forums
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** coppa_welcome_inactive.tpl 22 Jan 2002 08:31:47 -0000 1.4
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.5
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Welcome to {SITENAME} Forums
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/group_added.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** group_added.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- group_added.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: You have been added to this usergroup
+
Congratulations,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/group_approved.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** group_approved.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- group_approved.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Your request has been approved
+
Congratulations,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/group_request.tpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** group_request.tpl 22 Jan 2002 08:31:47 -0000 1.4
--- group_request.tpl 2 Mar 2002 18:13:23 -0000 1.5
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: A request to join your group has been made
+
Dear {GROUP_MODERATOR},
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/privmsg_notify.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** privmsg_notify.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- privmsg_notify.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: New Private Message has arrived
+
Hello {USERNAME},
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/topic_notify.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** topic_notify.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- topic_notify.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Topic Reply Notification - {TOPIC_TITLE}
+
Hello {USERNAME},
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/user_activate.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** user_activate.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- user_activate.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Reactivate your account
+
Hello {USERNAME},
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/user_activate_passwd.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** user_activate_passwd.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- user_activate_passwd.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: New password activation
+
Hello {USERNAME}
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/user_welcome.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** user_welcome.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- user_welcome.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Welcome to {SITENAME} Forums
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/email/user_welcome_inactive.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** user_welcome_inactive.tpl 24 Dec 2001 13:47:20 -0000 1.3
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:23 -0000 1.4
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Welcome to {SITENAME} Forums
+
{WELCOME_MSG}
|
|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_german/email
In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_german/email
Modified Files:
admin_activate.tpl admin_welcome_activated.tpl
admin_welcome_inactive.tpl coppa_welcome_inactive.tpl
group_added.tpl group_approved.tpl group_request.tpl
privmsg_notify.tpl topic_notify.tpl user_activate.tpl
user_activate_passwd.tpl user_welcome.tpl
user_welcome_inactive.tpl
Log Message:
Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes!
Index: admin_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/admin_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_activate.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- admin_activate.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Neuer Benutzeraccount
+
Hallo!
Index: admin_welcome_activated.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/admin_welcome_activated.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_activated.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- admin_welcome_activated.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Account aktiviert
+
Hallo {USERNAME}!
Index: admin_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/admin_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** admin_welcome_inactive.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- admin_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Willkommen auf {SITENAME}
+
{WELCOME_MSG}
Index: coppa_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/coppa_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** coppa_welcome_inactive.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- coppa_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Willkommen auf {SITENAME}
+
{WELCOME_MSG}
Index: group_added.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/group_added.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_added.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- group_added.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Du bist dieser Gruppe beigetreten
+
Gratulation,
Index: group_approved.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/group_approved.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_approved.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- group_approved.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Deine Anfrage wurde akzeptiert
+
Gratulation,
Index: group_request.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/group_request.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** group_request.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- group_request.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Eine Anfrage zum Beitritt in diese Gruppe wurde erstellt
+
Hallo {GROUP_MODERATOR}!
Index: privmsg_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/privmsg_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** privmsg_notify.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- privmsg_notify.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Eine neue Private Nachricht ist eingetroffen
+
Hallo {USERNAME}!
Index: topic_notify.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/topic_notify.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** topic_notify.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- topic_notify.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Benachrichtigen bei Antworten - {TOPIC_TITLE}
+
Hallo {USERNAME}!
Index: user_activate.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/user_activate.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- user_activate.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Account wieder aktivieren!
+
Hallo {USERNAME}!
Index: user_activate_passwd.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/user_activate_passwd.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_activate_passwd.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- user_activate_passwd.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Aktivierung des neuen Passwortes
+
Hallo {USERNAME}!
Index: user_welcome.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/user_welcome.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- user_welcome.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Willkommen auf {SITENAME}
+
{WELCOME_MSG}
Index: user_welcome_inactive.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/language/lang_german/email/user_welcome_inactive.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** user_welcome_inactive.tpl 8 Jan 2002 23:26:23 -0000 1.1
--- user_welcome_inactive.tpl 2 Mar 2002 18:13:24 -0000 1.2
***************
*** 1,2 ****
--- 1,4 ----
+ Subject: Willkommen auf {SITENAME}
+
{WELCOME_MSG}
|