Tadashi Okoshi
slash****@users*****
2005年 7月 6日 (水) 02:12:09 JST
Index: affelio/apps/album/Album/L10N/en_us.pm
diff -u /dev/null affelio/apps/album/Album/L10N/en_us.pm:1.1
--- /dev/null Wed Jul 6 02:12:09 2005
+++ affelio/apps/album/Album/L10N/en_us.pm Wed Jul 6 02:12:09 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:12:09 slash5234 Exp $
+
+package Album::L10N::en_us;
+{
+ use strict;
+ use lib("../../../../extlib");
+ use lib("../../");
+ use Album::L10N;
+ #
+ use vars qw(@ISA %Lexicon);
+
+ sub encoding { "UTF-8" }
+
+ @ISA = qw(Album::L10N);
+
+ %Lexicon = (
+ ##########################################################
+ #System
+ ##########################################################
+ '_SYS_ENCODING_DUMMY' =>'',
+ '_SYS_attr_opened' =>'Yes',
+ '_SYS_attr_closed' =>'',
+
+ ##########################################################
+ '_AUTO' => 1,
+ );
+}
+1;
Index: affelio/apps/album/Album/L10N/ja.pm
diff -u /dev/null affelio/apps/album/Album/L10N/ja.pm:1.1
--- /dev/null Wed Jul 6 02:12:09 2005
+++ affelio/apps/album/Album/L10N/ja.pm Wed Jul 6 02:12:09 2005
@@ -0,0 +1,51 @@
+# 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:12:09 slash5234 Exp $
+
+package Album::L10N::ja;
+{
+ use strict;
+ use lib("../../../../extlib");
+ use lib("../../");
+ use Album::L10N;
+ use Album::L10N::en_us;
+ #
+ use vars qw(@ISA %Lexicon);
+
+ sub encoding { "UTF-8" }
+
+ @ISA = qw(Album::L10N::en_us);
+
+ %Lexicon = (
+ ##########################################################
+ #Example
+ ##########################################################
+ '_example_ENCODING_DUMMY' =>'ããã»ãã»ã',
+ '_example_check_200_err1' => '[_1] ã«sendmailãæ¤åºã§ãã¾ãã!',
+ ##########################################################
+ #Add pairs...
+ ##########################################################
+ 'comment' => 'ã³ã¡ã³ã',
+ 'Add new album' => 'ã¢ã«ãã ã追å ãã',
+
+
+ ##########################################################
+ '_AUTO' => 1,
+ );
+}
+1;
+