root/branches/release-41/php/lib/l10n_ja.php @ 2714

Revision 2714, 4.1 kB (checked in by fumiakiy, 17 months ago)

L10 Japanese. BugId:80447

Line 
1<?php
2# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
3# This program is distributed under the terms of the
4# GNU General Public License, version 2.
5#
6# $Id$
7
8global $Lexicon_ja;
9$Lexicon_ja = array(
10
11## php/mt.php
12        'Page not found - [_1]' => '[_1]が芋぀かりたせんでした。',
13
14## php/lib/archive_lib.php
15        'Page' => 'りェブペヌゞ',
16        'Individual' => 'ブログ蚘事',
17        'Yearly' => '幎別',
18        'Monthly' => '月別',
19        'Daily' => '日別',
20        'Weekly' => '週別',
21        'Author' => 'ナヌザヌ',
22        '(Display Name not set)' => '(衚瀺名なし)',
23        'Author Yearly' => 'ナヌザヌ 幎別',
24        'Author Monthly' => 'ナヌザヌ 月別',
25        'Author Daily' => 'ナヌザヌ 日別',
26        'Author Weekly' => 'ナヌザヌ 週別',
27        'Category Yearly' => 'カテゎリ 幎別',
28        'Category Monthly' => 'カテゎリ 月別',
29        'Category Daily' => 'カテゎリ 日別',
30        'Category Weekly' => 'カテゎリ 週別',
31
32## php/lib/function.mtsetvar.php
33        'You used a [_1] tag without a valid name attribute.' => '[_1]タグではname属性は必須です。',
34        '\'[_1]\' is not a hash.' => '[_1]はハッシュではありたせん。',
35        'Invalid index.' => '䞍正なむンデックスです。',
36        '\'[_1]\' is not an array.' => '[_1]は配列ではありたせん。',
37        '[_1] [_2] [_3] is illegal.' => '[_1] [_2] [_3]は䞍正です。',
38        '\'[_1]\' is not a valid function.' => '[_1]ずいう関数はサポヌトされおいたせん。',
39
40## php/lib/function.mtproductname.php
41        '[_1] [_2]' => '[_1] [_2]',
42
43## php/lib/function.mtcommentauthor.php
44        'Anonymous' => '匿名',
45
46## php/lib/block.mtsetvarblock.php
47
48## php/lib/block.mtsethashvar.php
49
50## php/lib/function.mtcommentauthorlink.php
51
52## php/lib/function.mtvar.php
53        '\'[_1]\' is not a valid function for a hash.' => '[_1]はハッシュで利甚できる関数ではありたせん。',
54        '\'[_1]\' is not a valid function for an array.' => '[_1]は配列で利甚できる関数ではありたせん。',
55
56## php/lib/function.mtwidgetmanager.php
57        'Error: widgetset [_1] is empty.' => 'りィゞェットセット[_1]に䞭身がありたせん。',
58        'Error compiling widgetset [_1]' => 'りィゞェットセット[_1]をコンパむルできたせんでした。',
59
60## php/lib/block.mtauthorhaspage.php
61        'No author available' => 'ナヌザヌが芋぀かりたせん。',
62
63## php/lib/block.mtentries.php
64        'sort_by="score" must be used in combination with namespace.' => 'sort_by="score"を指定するずきはnamespaceも指定しなければなりたせん。',
65
66## php/lib/block.mtif.php
67
68## php/lib/block.mtassets.php
69
70## php/lib/thumbnail_lib.php
71        'GD support has not been available. Please install GD support.' => '凊理にGDが必芁ですが利甚できないようです。',
72
73## php/lib/function.mtentryclasslabel.php
74        'page' => 'りェブペヌゞ',
75        'entry' => 'ブログ蚘事',
76        'Entry' => 'ブログ蚘事',
77
78## php/lib/MTUtil.php
79        'userpic-[_1]-%wx%h%x' => 'userpic-[_1]-%wx%h%x',
80
81## php/lib/function.mtauthordisplayname.php
82
83## php/lib/function.mtremotesigninlink.php
84        'TypeKey authentication is not enabled in this blog.  MTRemoteSignInLink can\'t be used.' => 'ブログでTypeKey認蚌を有効にしおいないので、MTRemoteSignInLinkは利甚できたせん。',
85
86## php/lib/captcha_lib.php
87        'Captcha' => 'Captcha',
88        'Type the characters you see in the picture above.' => '画像の䞭に芋える文字を入力しおください。',
89
90## php/lib/function.mtassettype.php
91        'image' => '画像',
92        'Image' => '画像',
93        'file' => 'ファむル',
94        'File' => 'ファむル',
95        'audio' => 'オヌディオ',
96        'Audio' => 'オヌディオ',
97        'video' => 'ビデオ',
98        'Video' => 'ビデオ',
99
100## php/lib/block.mtauthorhasentry.php
101
102## php/lib/function.mtcommentreplytolink.php
103        'Reply' => '返信',
104
105## php/mt.php.pre
106);
107function translate_phrase($str, $params = null) {
108    global $Lexicon, $Lexicon_ja;
109    $l10n_str = isset($Lexicon_ja[$str]) ? $Lexicon_ja[$str] : (isset($Lexicon[$str]) ? $Lexicon[$str] : $str);
110    if (extension_loaded('mbstring')) {
111        $str = mb_convert_encoding($l10n_str,mb_internal_encoding(),"UTF-8");
112    } else {
113        $str = $l10n_str;
114    }
115    return translate_phrase_param($str, $params);
116}
117?>
Note: See TracBrowser for help on using the browser.