Update of /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_history
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9835/plugins/serendipity_plugin_history
Modified Files:
serendipity_plugin_history.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:37 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_HISTORY_NAME', 'å±¥æ´');
@define('PLUGIN_HISTORY_DESC', 'Displays ancient entries of an adjustable age.');
@define('PLUGIN_HISTORY_MIN_AGE', 'æå°æ');
@define('PLUGIN_HISTORY_MIN_AGE_DESC', 'Minimum age of entries (åä½ã¯æ¥).');
@define('PLUGIN_HISTORY_MAX_AGE', 'æå¤§æ');
@define('PLUGIN_HISTORY_MAX_AGE_DESC','Maximum age of entries (åä½ã¯æ¥).');
@define('PLUGIN_HISTORY_MAX_ENTRIES', 'æå¤§ã¨ã³ããª');
@define('PLUGIN_HISTORY_MAX_ENTRIES_DESC', '表示ããã¨ã³ããªã®æ°');
@define('PLUGIN_HISTORY_SHOWFULL', 'å®å
¨ãªã¨ã³ããª');
@define('PLUGIN_HISTORY_SHOWFULL_DESC', 'Display full entries instead of linked headlines.');
@define('PLUGIN_HISTORY_INTRO', 'ã¤ã³ãã');
@define('PLUGIN_HISTORY_INTRO_DESC', 'A short intro like \'One year ago I said:\'.');
@define('PLUGIN_HISTORY_OUTRO', 'ã¢ã¦ãã');
@define('PLUGIN_HISTORY_OUTRO_DESC', 'A short Outro like \'Nice, eh?\'.');
@define('PLUGIN_HISTORY_DISPLAYDATE', 'æ¥ä»è¡¨ç¤ºããã');
@define('PLUGIN_HISTORY_DISPLAYDATE_DESC', 'Display the date of each entry?');
@define('PLUGIN_HISTORY_MAXLENGTH', 'é¡åã®é·ã');
@define('PLUGIN_HISTORY_MAXLENGTH_DESC', 'After how many characters to cut the titles (0 for full titles)?');
@define('PLUGIN_HISTORY_SPECIALAGE', 'Ready-made age?');
@define('PLUGIN_HISTORY_SPECIALAGE_DESC', 'If you want to define your own timerange instead of a ready-made, select \'I\'ll define one\' here and adjust the two settings below.');
@define('PLUGIN_HISTORY_SPECIALAGE_YEAR', 'Display items of exactly one year ago');
@define('PLUGIN_HISTORY_CUSTOMAGE', 'Let me define the age');
@define('PLUGIN_HISTORY_OYA', 'One year ago');
@define('PLUGIN_HISTORY_MYSELF', 'I\'ll define one');
/* vim: set sts=4 ts=4 expandtab : */
?>
Index: serendipity_plugin_history.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_plugin_history/serendipity_plugin_history.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- serendipity_plugin_history.php 20 Dec 2004 18:46:55 -0000 1.21
+++ serendipity_plugin_history.php 4 Jan 2005 10:06:37 -0000 1.22
@@ -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_HISTORY_NAME', 'Geschichte');
|