|
Revision 2123, 1.1 kB
(checked in by fumiakiy, 19 months ago)
|
|
L10 Japanese for Release-36.
|
| Line | |
|---|
| 1 | # WidgetManager plugin for Movable Type |
|---|
| 2 | # Author: Byrne Reese, Six Apart (http://www.sixapart.com) |
|---|
| 3 | # Released under the Artistic License |
|---|
| 4 | # |
|---|
| 5 | package WidgetManager::L10N::ja; |
|---|
| 6 | |
|---|
| 7 | use strict; |
|---|
| 8 | use base 'WidgetManager::L10N::en_us'; |
|---|
| 9 | use vars qw( %Lexicon ); |
|---|
| 10 | |
|---|
| 11 | ## The following is the translation table. |
|---|
| 12 | |
|---|
| 13 | %Lexicon = ( |
|---|
| 14 | |
|---|
| 15 | ## plugins/WidgetManager/WidgetManager.pl |
|---|
| 16 | 'Widget Manager version 1.1; This version of the plugin is to upgrade data from older version of Widget Manager that has been shipped with Movable Type to the Movable Type core schema. No other features are included. You can safely remove this plugin after installing/upgrading Movable Type.' => 'Widget Manager version 1.1; ãã®ãã©ã°ã€ã³ã¯ãå€ãããŒãžã§ã³ã®Widget Managerã®ããŒã¿ãMovable Typeã®ã³ã¢ãžçµ±åããŠã¢ããã°ã¬ãŒãããããã«æäŸãããŠããŸããã¢ããã°ã¬ãŒã以å€ã®æ©èœã¯ãããŸãããææ°ã®Movable Typeãžã¢ããã°ã¬ãŒããçµãã£ãåŸã¯ããã®ãã©ã°ã€ã³ãåé€ããŠãã ããã', |
|---|
| 17 | 'Moving storage of Widget Manager [_1]...' => 'Widget Managerã®æ ŒçŽå Žæã倿ŽããŠããŸã...', |
|---|
| 18 | |
|---|
| 19 | ); |
|---|
| 20 | |
|---|
| 21 | 1; |
|---|
| 22 | |
|---|