Tadashi Okoshi
slash****@users*****
2005年 7月 6日 (水) 02:30:04 JST
Index: affelio/apps/diary/Diary/L10N/en_us.pm
diff -u /dev/null affelio/apps/diary/Diary/L10N/en_us.pm:1.1
--- /dev/null Wed Jul 6 02:30:04 2005
+++ affelio/apps/diary/Diary/L10N/en_us.pm Wed Jul 6 02:30:04 2005
@@ -0,0 +1,44 @@
+# Copyright (C) 2005 FishGrove Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# $Id: en_us.pm,v 1.1 2005/07/05 17:30:04 slash5234 Exp $
+
+package Diary::L10N::en_us;
+{
+ use strict;
+ use lib("../../../../extlib");
+ use lib("../../");
+ use Diary::L10N;
+ #
+ use vars qw(@ISA %Lexicon);
+
+ sub encoding { "UTF-8" }
+
+ @ISA = qw(Diary::L10N);
+
+ %Lexicon = (
+ ##########################################################
+ #System
+ ##########################################################
+ '_SYS_ENCODING_DUMMY' =>'',
+ '_SYS_attr_opened' =>'Yes',
+ '_SYS_attr_closed' =>'',
+
+ ##########################################################
+ '_AUTO' => 1,
+ );
+}
+1;
Index: affelio/apps/diary/Diary/L10N/ja.pm
diff -u /dev/null affelio/apps/diary/Diary/L10N/ja.pm:1.1
--- /dev/null Wed Jul 6 02:30:04 2005
+++ affelio/apps/diary/Diary/L10N/ja.pm Wed Jul 6 02:30:04 2005
@@ -0,0 +1,52 @@
+# Copyright (C) 2005 FishGrove Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# $Id: ja.pm,v 1.1 2005/07/05 17:30:04 slash5234 Exp $
+
+package Diary::L10N::ja;
+{
+ use strict;
+ use lib("../../../../extlib");
+ use lib("../../");
+ use Diary::L10N;
+ use Diary::L10N::en_us;
+ #
+ use vars qw(@ISA %Lexicon);
+
+ sub encoding { "UTF-8" }
+
+ @ISA = qw(Diary::L10N::en_us);
+
+ %Lexicon = (
+ ##########################################################
+ #Example
+ ##########################################################
+ '_example_ENCODING_DUMMY' =>'ããã»ãã»ã',
+ '_example_check_200_err1' => '[_1] ã«sendmailãæ¤åºã§ãã¾ãã!',
+ ##########################################################
+ #Add pairs...
+ ##########################################################
+ #è¡æ«ã¯å
¨é¨ã«ã³ãå
¥ãã¾ãï¼å
¨ä½ã§ä¸ã¤ã®é£æ³é
åï¼
+ 'comment' => 'ã³ã¡ã³ã',
+ 'Add new album' => 'ã¢ã«ãã ã追å ãã',
+
+
+ ##########################################################
+ '_AUTO' => 1,
+ );
+}
+1;
+