Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_recententries
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9835/plugins/serendipity_plugin_recententries
Modified Files:
serendipity_plugin_recententries.php
Added Files:
lang_ja.inc.php
Log Message:
updated japanese translation, including some plugins
--- NEW FILE: lang_ja.inc.php ---
<?php # $Id: lang_ja.inc.php,v 1.1 2005/01/04 10:06:38 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_RECENTENTRIES_TITLE', 'æè¿ã®ã¨ã³ããª');
@define('PLUGIN_RECENTENTRIES_BLAHBLAH', 'ãã£ã¨ãæè¿ã®ã¨ã³ããªã®é¡åã¨æ¥ä»ã表示ãã¾ã');
@define('PLUGIN_RECENTENTRIES_NUMBER', 'ã¨ã³ããªã®æ°');
@define('PLUGIN_RECENTENTRIES_NUMBER_BLAHBLAH', 'ã©ããããã®ã¨ã³ããªã表示ãã¾ãã? (ããã©ã«ã: 10)');
@define('PLUGIN_RECENTENTRIES_NUMBER_FROM', 'ããã³ããã¼ã¸ã¨ã³ããªãé£ã°ã');
@define('PLUGIN_RECENTENTRIES_NUMBER_FROM_DESC', 'Only recent entries that are not on the front page will be shown. (Default: latest ' . $serendipity['fetchLimit'] . ' will be skipped)');
@define('PLUGIN_RECENTENTRIES_NUMBER_FROM_RADIO_ALL', 'ãã¹ã¦è¡¨ç¤º');
@define('PLUGIN_RECENTENTRIES_NUMBER_FROM_RADIO_RECENT', 'ããã³ããã¼ã¸é
ç®ãé£ã°ã');
/* vim: set sts=4 ts=4 expandtab : */
?>
Index: serendipity_plugin_recententries.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_recententries/serendipity_plugin_recententries.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- serendipity_plugin_recententries.php 3 Dec 2004 12:02:28 -0000 1.13
+++ serendipity_plugin_recententries.php 4 Jan 2005 10:06:38 -0000 1.14
@@ -2,6 +2,12 @@
// Contributed by Christian Machmeier <cm...@re...>
+// 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_RECENTENTRIES_TITLE', 'Aktuelle Einträge');
|