285 lines
15 KiB
PHP
285 lines
15 KiB
PHP
<?php
|
|
// Copyright 1999-2024. WebPros International GmbH. All rights reserved.
|
|
|
|
$messages = [
|
|
'activeList' => [
|
|
'button' => [
|
|
'title' => 'Node.js',
|
|
'description' => 'このウェブサイトの Node.js を管理します。',
|
|
'enabled' => 'Node.js バージョン:%%version%%',
|
|
],
|
|
'service' => [
|
|
'version' => 'Node.js バージョン:%%version%%',
|
|
'mode' => 'モード:%%mode%%',
|
|
'restartButton' => 'アプリを再起動',
|
|
],
|
|
],
|
|
|
|
'application' => [
|
|
'unsupportedPkgManager' => "サポートされないパッケージマネージャ「%%pkgManager%%」",
|
|
],
|
|
|
|
'controllers' => [
|
|
'index' => [
|
|
'index' => [
|
|
'title' => 'Node.js マネージャ',
|
|
],
|
|
],
|
|
'domain' => [
|
|
'index' => [
|
|
'title' => 'Node.js',
|
|
'titleForObject' => '%%name%% の Node.js',
|
|
|
|
'noStartupFileHint' => 'このドメインでは Node.js が有効ですが、起動ファイル %%file%% が見つかりません。',
|
|
|
|
'enableButton' => 'Node.js を有効化',
|
|
'enableButtonDescription' => 'このドメインで Node.js を有効化します。',
|
|
'restartButton' => 'アプリを再起動',
|
|
'restartButtonDescription' => 'Node.js アプリケーションを再起動します。',
|
|
'npmInstallButton' => 'NPM インストール',
|
|
'yarnInstallButton' => 'Yarn インストール',
|
|
'installButtonDescription' => '\'package.json\' ファイルにリストされているパッケージをインストールします。',
|
|
'runScriptButton' => 'スクリプトを実行',
|
|
'runScriptButtonDescription' => '\'package.json\' ファイルの \'Scripts\' セクションに指定されているコマンドを実行します。',
|
|
'disableButton' => 'Node.js を無効化',
|
|
'disableButtonDescription' => 'このドメインで Node.js を無効化します。',
|
|
'openFileManagerButton' => 'ファイルマネージャ',
|
|
'openFileManagerButtonDescription' => 'ファイルを表示して編集するには、ファイルマネージャを開きます。',
|
|
|
|
'version' => 'Node.js バージョン',
|
|
'versionPopupTitle' => 'このアプリケーションの Node.js バージョン',
|
|
'versionPopupDescription' => 'このアプリケーション用に Node.js のバージョンを選択:',
|
|
'environment' => 'カスタム環境変数',
|
|
'environmentEdit' => '指定',
|
|
'documentRoot' => 'ドキュメントルート',
|
|
'documentRootMatchesApplicationRootWarning' => 'セキュリティ上の配慮から、ドキュメントルートをアプリケーションルートのサブディレクトリに設定することをお勧めします (public/ など)。',
|
|
'documentRootNotInApplicationRootWarning' => 'アプリケーションは機能しません。ドキュメントルートがアプリケーションルートのサブチャイルドではありません。',
|
|
'applicationMode' => 'アプリケーションモード',
|
|
'applicationModePopupTitle' => 'アプリケーションモード',
|
|
'applicationModePopupDescription' => 'Node.js アプリケーションのモードを選択:',
|
|
'applicationUrl' => 'アプリケーション URL',
|
|
'applicationPath' => 'アプリケーションルート',
|
|
'applicationPathOpen' => '開く',
|
|
'applicationStartupFileEdit' => '編集',
|
|
'applicationPathPopupTitle' => 'アプリケーションルート',
|
|
'applicationPathPopupDescription' => 'Node.js アプリケーションのルートを選択:',
|
|
'applicationStartupFile' => 'アプリケーション起動ファイル',
|
|
'applicationStartupFilePopupTitle' => 'アプリケーション起動ファイル',
|
|
'applicationStartupFilePopupDescription' => 'Node.js アプリケーションの起動ファイルを変更:',
|
|
'applicationStartupFileNotExist' => 'ファイルが存在しません',
|
|
'packageManager' => 'パッケージマネージャ',
|
|
'pkgManagerPopupTitle' => 'パッケージマネージャ',
|
|
'pkgManagerPopupDescription' => 'このアプリケーションのパッケージマネージャを選択してください:',
|
|
'packageManagerNotSpecified' => 'これが検出されましたが、変更できます',
|
|
|
|
'configurationFilesTitle' => '構成ファイルへのアクセス',
|
|
'configurationFilesDescription' => '編集するファイル名をクリック:',
|
|
|
|
'documentRootPopupTitle' => 'ドキュメントルート',
|
|
'documentRootPopupDescription' => 'ウェブサイトのルートディレクトリを選択してください:',
|
|
'rootDirectoryTitle' => 'ルートディレクトリ',
|
|
'pleaseWait' => 'お待ちください...',
|
|
],
|
|
'enable' => [
|
|
'success' => 'Node.js が %%domain%% で有効化されました。',
|
|
],
|
|
'restart' => [
|
|
'success' => '最初のリクエスト後にアプリケーションが再起動されます。',
|
|
],
|
|
'disable' => [
|
|
'success' => 'Node.js が %%domain%% で無効化されました。',
|
|
],
|
|
'change-version' => [
|
|
'success' => 'Node.js バージョンが正常に更新されました。',
|
|
],
|
|
'change-application-mode' => [
|
|
'success' => 'アプリケーションモードが正常に更新されました。',
|
|
'failed' => 'アプリケーションモード "%%value%%" が無効です。',
|
|
],
|
|
'change-package-manager' => [
|
|
'success' => 'パッケージマネージャが正常に変更されました。',
|
|
'failed' => 'パッケージマネージャの変更に失敗しました:%%message%%。',
|
|
],
|
|
'change-application-path' => [
|
|
'success' => 'アプリケーションパスが正常に更新されました。',
|
|
'failed' => 'パス %%path%% が無効です。',
|
|
],
|
|
'application-path-in-use' => [
|
|
'title' => '契約内の他の Node.js アプリケーションがこのアプリケーションルートを既に使用しています。ドキュメントルートを含む他のアプリケーションルートを指定してください。',
|
|
],
|
|
'change-document-root' => [
|
|
'success' => 'ドキュメントルートが正常に更新されました。',
|
|
'failed' => 'ドキュメントルートを変更できません:%%cause%%',
|
|
],
|
|
'change-application-startup-file' => [
|
|
'success' => 'アプリケーション起動ファイルが正常に更新されました。',
|
|
'failed' => 'ファイル名 %%file%% が無効です。',
|
|
],
|
|
'environment' => [
|
|
'title' => 'カスタム環境変数を編集',
|
|
'failed' => "個人環境変数 %%var%% の json-representation は 255 文字以内にしてください。",
|
|
'success' => 'カスタム環境変数が更新されました。',
|
|
],
|
|
'dashboard' =>
|
|
[
|
|
'title' => 'ダッシュボード',
|
|
],
|
|
'command-line' =>
|
|
[
|
|
'title' => 'Node.js コマンドを実行',
|
|
],
|
|
],
|
|
],
|
|
|
|
'permissions' => [
|
|
'supportManagement' => 'Node.js サポート管理',
|
|
'supportManagementDescription' => '顧客に対し、Node.js の使用を許可する',
|
|
'stateManagement' => 'Node.js 状態管理',
|
|
'stateManagementDescription' => '顧客に対し、Node.js の状態の変更を許可する',
|
|
'versionManagement' => 'Node.js バージョン管理',
|
|
'versionManagementDescription' => '顧客に対し、Node.js バージョンの変更を許可する',
|
|
],
|
|
|
|
'components' => [
|
|
'buttons' => [
|
|
'ok' => 'OK',
|
|
'cancel' => 'キャンセル',
|
|
],
|
|
'forms' => [
|
|
'environment' => [
|
|
'variables' => 'カスタム環境変数',
|
|
'variableName' => '変数',
|
|
'variableValue' => '値',
|
|
'addButton' => '変数を追加',
|
|
'removeButton' => '削除',
|
|
],
|
|
],
|
|
'command-line' => [
|
|
'executeCommandTooltip' => 'コマンドを実行',
|
|
'commandInputDescription' => '実行する Node.js コマンドを入力してください',
|
|
'selectNodeVersion' => 'Node.js バージョンを選択',
|
|
'selectPackageManager' => 'パッケージマネージャを選択',
|
|
],
|
|
'icons' => [
|
|
'warning' => '警告',
|
|
],
|
|
'links' => [
|
|
'opensInNewTab' => '新しいタブで開く',
|
|
],
|
|
'editableSelect' => [
|
|
'toggleDropdown' => 'ドロップダウンオプションを切り替える',
|
|
],
|
|
'run-script-popup' => [
|
|
'title' => 'スクリプトを実行',
|
|
'options' => 'スクリプト名とパラメータ',
|
|
'optionsDescription' => '例:%%examples%%',
|
|
'optionsInputLabel' => 'スクリプトオプション',
|
|
'output' => '出力',
|
|
'run' => '実行',
|
|
'pleaseWait' => 'お待ちください',
|
|
],
|
|
'lists' => [
|
|
'handlers' => [
|
|
'refreshButton' => '更新',
|
|
'refreshButtonDescription' => 'Node.js ハンドラのリストを更新',
|
|
|
|
'version' => 'バージョン',
|
|
'path' => 'パス',
|
|
'domains' => 'ドメイン',
|
|
'enableVersion' => 'Node.js バージョン %%version%% を有効にする',
|
|
'disableVersion' => 'Node.js バージョン %%version%% を無効にする',
|
|
'versionInstallation' => [
|
|
'install' => 'インストール',
|
|
'installing' => ' インストール中...',
|
|
'installTooltip' => 'Node.js バージョン %%version%% をインストール',
|
|
'uninstall' => 'アンインストール',
|
|
'uninstalling' => 'アンインストール中...',
|
|
'uninstallTooltip' => 'Node.js バージョン %%version%% をアンインストール',
|
|
'uninstallBlockadeReasons' => [
|
|
'domains' => '%%count%% 件のドメインで使用されているため、このバージョンをアンインストールできません。',
|
|
'enabled' => '有効化されているため、このバージョンをアンインストールできません。',
|
|
]
|
|
]
|
|
],
|
|
],
|
|
'tasks' => [
|
|
'npm-install' => [
|
|
'title' => 'NPM インストール',
|
|
],
|
|
'yarn-install' => [
|
|
'title' => 'Yarn インストール',
|
|
],
|
|
'step-install-title' => 'アプリケーションの依存関係をインストールします。',
|
|
],
|
|
],
|
|
|
|
'api' => [
|
|
'common' => [
|
|
'permissionDenied' => 'パーミッションが拒否されました',
|
|
'domainDoesNotHaveHosting' => 'ドメイン "%%domain%%" に物理ホスティングがありません。',
|
|
'commandNotFound' => 'コマンド "%%command%%" が見つかりません。',
|
|
'handlerNotFound' => 'Node.js のバージョン "%%version%%" が見つかりませんでした。',
|
|
'noHandlerOnDomain' => 'ドメインに対して Node.js のバージョンが 1 つ以上有効になっている必要があります。',
|
|
'disabledOnDomain' => 'ドメインで Node.js のサポートが無効になっています。',
|
|
'versionIsEmpty' => 'バージョンが空です。',
|
|
],
|
|
'cli' => [
|
|
'versions' => [
|
|
'enabled' => '有効',
|
|
'version' => 'バージョン',
|
|
'path' => 'パス',
|
|
'empty' => 'Node.js のバージョンが見つかりません。',
|
|
],
|
|
'enable' => [
|
|
'success' => 'Node.js バージョン "%%version%%" が有効化されました。',
|
|
],
|
|
'disable' => [
|
|
'success' => 'Node.js バージョン "%%version%%" が無効化されました。',
|
|
],
|
|
'enableOnDomain' => [
|
|
'success' => 'ドメイン "%%domain%%" で Node.js が有効化されました。',
|
|
],
|
|
'disableOnDomain' => [
|
|
'success' => 'ドメイン "%%domain%%" で Node.js が無効化されました。',
|
|
],
|
|
'setVersion' => [
|
|
'success' => 'ドメイン "%%domain%%" で Node.js バージョンが "%%version%%" に変更されました。',
|
|
],
|
|
'install' => [
|
|
'success' => 'Node.js バージョン "%%version%%" がインストールされました。',
|
|
],
|
|
'uninstall' => [
|
|
'success' => 'Node.js バージョン "%%version%%" がアンインストールされました。',
|
|
],
|
|
],
|
|
],
|
|
|
|
'cli' => [
|
|
'commands' => [
|
|
'versions' => 'Node.js バージョンのリストを表示します。',
|
|
'enable' => 'Node.js バージョンを有効化するか、ドメインでの Node.js のサポートを有効化してください。',
|
|
'disable' => 'Node.js バージョンを無効化するか、ドメインでの Node.js のサポートを無効化してください。',
|
|
'set-version' => 'ドメインの Node.js バージョンを設定します。',
|
|
'get-version' => 'ドメインの Node.js バージョンを表示します。',
|
|
'install' => 'Node.js バージョンをインストールします。',
|
|
'uninstall' => 'Node.js バージョンをアンインストールします。',
|
|
],
|
|
'options' => [
|
|
'domain' => 'ドメイン名("enable"、"disable"、"get-version" コマンドで使用)。',
|
|
'version' => 'Node.js バージョン("enable"、"disable"、"set-version"、"install"、"uninstall" コマンドで使用)。',
|
|
],
|
|
],
|
|
|
|
'forms' => [
|
|
'applicationWizard' => [
|
|
'title' => 'Node.js アプリケーション',
|
|
'description' => 'ドメインで Node.js を有効化する',
|
|
],
|
|
'installApplication' => [
|
|
'title' => 'Node.js',
|
|
'description' => 'ドメインで Node.js を有効化する',
|
|
],
|
|
],
|
|
];
|
|
|