Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_creativecommons
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32583/plugins/serendipity_event_creativecommons
Modified Files:
serendipity_event_creativecommons.php
Added Files:
lang_ja.inc.php
Log Message:
Japanese translation updates
Index: serendipity_event_creativecommons.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_creativecommons/serendipity_event_creativecommons.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- serendipity_event_creativecommons.php 2 Dec 2004 10:55:00 -0000 1.15
+++ serendipity_event_creativecommons.php 8 Jan 2005 12:25:10 -0000 1.16
@@ -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_CREATIVECOMMONS_NAME', 'Creative Commons Lizenz');
--- NEW FILE: lang_ja.inc.php ---
<?php # $Id: lang_ja.inc.php,v 1.1 2005/01/08 12:25:10 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_CREATIVECOMMONS_NAME', 'ã¯ãªã¨ã¤ãã£ãã³ã¢ã³ã©ã¤ã»ã³ã¹');
@define('PLUGIN_CREATIVECOMMONS_DESC', 'ããªãã®ã³ã³ãã³ãã®ã¯ãªã¨ã¤ãã£ãã³ã¢ã³ãºã©ã¤ã»ã³ã¹ã®é¸æã¨è¡¨ç¤ºããã¾ãã');
@define('PLUGIN_CREATIVECOMMONS_TXT', 'ããã¹ãã表示ãã¾ãã?');
@define('PLUGIN_CREATIVECOMMONS_TXT_DESC', 'For visible notifications of license status, show a brief explanation of your license choice.');
@define('PLUGIN_CREATIVECOMMONS_CAP', 'Original content in this work is licensed under a <a href="#license_uri#">Creative Commons License</a>');
@define('PLUGIN_CREATIVECOMMONS_CAP_PD', 'Original content in this work is dedicated to the <a href="#license_url#}">Public Domain</a>');
// @define('PLUGIN_CREATIVECOMMONS_BY', 'Require attribution?');
// @define('PLUGIN_CREATIVECOMMONS_BY_DESC', 'The licensor permits others to copy, distribute, display, and perform the work. In return, licensees must give the original author credit.');
@define('PLUGIN_CREATIVECOMMONS_NC', 'ããªãã®ä½åã®åæ¥ç¨éã許å¯ãã¾ãã?');
@define('PLUGIN_CREATIVECOMMONS_NC_DESC', 'The licensor permits others to copy, distribute, display, and perform the work. In return, licensees may not use the work for commercial purposes -- unless they get the licensor\'s permission.');
@define('PLUGIN_CREATIVECOMMONS_ND', 'ä½åã®ä¿®æ£ã許å¯ãã¾ãã');
@define('PLUGIN_CREATIVECOMMONS_ND_DESC', 'The licensor permits others to copy, distribute, display and perform only unaltered copies of the work -- not derivative works based on it.');
@define('PLUGIN_CREATIVECOMMONS_SA_DESC', 'Yes, as long as others share alike');
?>
|