Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_mailer
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9835/plugins/serendipity_event_mailer
Modified Files:
serendipity_event_mailer.php
Added Files:
lang_ja.inc.php
Log Message:
updated japanese translation, including some plugins
Index: serendipity_event_mailer.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_mailer/serendipity_event_mailer.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- serendipity_event_mailer.php 29 Dec 2004 10:09:43 -0000 1.10
+++ serendipity_event_mailer.php 4 Jan 2005 10:06:35 -0000 1.11
@@ -1,5 +1,11 @@
<?php # $Id$
+// Probe for a language include with constants. Still include defines later on, if some constants were missing
+$probelang = dirname(__FILE__) . '/lang_' . $serendipity['lang'] . '.inc.php';
+if (file_exists($probelang)) {
+ include $probelang;
+}
+
switch ($serendipity['lang']) {
case 'de':
@define('PLUGIN_EVENT_MAILER_NAME', 'Artikel mailen');
--- NEW FILE: lang_ja.inc.php ---
<?php # $Id: lang_ja.inc.php,v 1.1 2005/01/04 10:06:35 garvinhicking Exp $
##########################################################################
# serendipity - another blogger... #
##########################################################################
# #
# (c) 2003 Jannis Hermanns <J...@ha...> #
# http://www.jannis.to/programming/serendipity.html #
# #
# Translated by #
# (c) 2004-2005 Tadashi Jokagi <el...@us...> #
# #
##########################################################################
@define('PLUGIN_EVENT_MAILER_NAME', 'é»åã¡ã¼ã«ã§ã¨ã³ããªãéä¿¡-Mail');
@define('PLUGIN_EVENT_MAILER_DESC', 'æå®ã®ã¢ãã¬ã¹ã«é»åã¡ã¼ã«ã§æ°ããä½ãããã¨ã³ããªãéããã¾ãã');
@define('PLUGIN_EVENT_MAILER_RECIPIENT', 'ã¡ã¼ã«åä¿¡è
');
@define('PLUGIN_EVENT_MAILER_RECIPIENTDESC', 'ã¨ã³ããªãéä¿¡ãããé»åã¡ã¼ã«ã¢ãã¬ã¹ (ææ¡: ã¡ã¼ãªã³ã°ãªã¹ã)');
@define('PLUGIN_EVENT_MAILER_LINK', 'è¨äºã¸ã®ãªã³ã¯ãã¡ã¼ã«ãã¾ãã?');
@define('PLUGIN_EVENT_MAILER_LINKDESC', 'ã¡ã¼ã«ã«è¨äºã¸ã®ãªã³ã¯ãå«ã¿ã¾ãã');
@define('PLUGIN_EVENT_MAILER_STRIPTAGS', 'HTML ãåé¤ãã¾ãã?');
@define('PLUGIN_EVENT_MAILER_STRIPTAGSDESC', 'é»åã¡ã¼ã«ãã HTML ã¿ã°ãåé¤ãã¾ãã');
/* vim: set sts=4 ts=4 expandtab : */
?>
|