[Affelio-cvs 540] CVS update: affelio/apps/diary/Diary/L10N

Back to archive index

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;
+


Affelio-cvs メーリングリストの案内
Back to archive index