diff --git a/res/app/components/stf/basic-mode/basic-mode-directive.js b/res/app/components/stf/basic-mode/basic-mode-directive.js index 34cf29e5..5a258abe 100644 --- a/res/app/components/stf/basic-mode/basic-mode-directive.js +++ b/res/app/components/stf/basic-mode/basic-mode-directive.js @@ -1,8 +1,8 @@ module.exports = function basicModeDirective($rootScope, BrowserInfo) { return { restrict: 'AE', - link: function (scope, element, attrs) { - $rootScope.basicMode = !!BrowserInfo.small // TODO: use .mobile + link: function (scope, element) { + $rootScope.basicMode = !!BrowserInfo.mobile // CHECK: use .mobile instead of .small if ($rootScope.basicMode) { element.addClass('basic-mode') } diff --git a/res/app/control-panes/dashboard/clipboard/clipboard.jade b/res/app/control-panes/dashboard/clipboard/clipboard.jade index 876ee304..be425639 100644 --- a/res/app/control-panes/dashboard/clipboard/clipboard.jade +++ b/res/app/control-panes/dashboard/clipboard/clipboard.jade @@ -6,5 +6,5 @@ .input-group.form-inline textarea(rows='1', ng-model='control.clipboardContent', msd-elastic).form-control.clipboard-textarea span.input-group-btn - button.btn.btn-primary-outline(ng-click='control.getClipboardContent()') + button.btn.btn-primary-outline(ng-click='control.getClipboardContent()', tooltip='{{ "Get clipboard contents" | translate }}') i.fa.fa-refresh diff --git a/res/app/control-panes/dashboard/shell/shell-controller.js b/res/app/control-panes/dashboard/shell/shell-controller.js index 0bb3c6a0..8859bca3 100644 --- a/res/app/control-panes/dashboard/shell/shell-controller.js +++ b/res/app/control-panes/dashboard/shell/shell-controller.js @@ -3,7 +3,7 @@ module.exports = function ShellCtrl($scope, gettext) { // $scope.results = [] $scope.result = null - $scope.referenceUrl = 'https://github.com/jackpal/Android-Terminal-Emulator/wiki/Android-Shell-Command-Reference' + $scope.referenceUrl = '/#!/help/shell' $scope.run = function(command) { if (command === 'clear') { diff --git a/res/app/control-panes/dashboard/shell/shell.jade b/res/app/control-panes/dashboard/shell/shell.jade index f69c20c5..02bb03d8 100644 --- a/res/app/control-panes/dashboard/shell/shell.jade +++ b/res/app/control-panes/dashboard/shell/shell.jade @@ -13,6 +13,7 @@ span.input-group-btn // , tooltip='{{"Run Command"|translate}}' button.btn.btn-primary-outline(ng-click='run(command)', ng-disabled='!command') + //, tooltip='{{ "Run command" | translate }}') i.fa.fa-play pre.shell-results(ng-show='data') {{data}} pre.shell-results(ng-show='result.settled && !data').shell-results-empty No output diff --git a/res/app/help/index.js b/res/app/help/index.js index 885b2d86..a20f7fa4 100644 --- a/res/app/help/index.js +++ b/res/app/help/index.js @@ -1,4 +1,6 @@ -module.exports = angular.module('help', []) +module.exports = angular.module('help', [ + require('./shell').name +]) .config(['$routeProvider', function ($routeProvider) { $routeProvider.when('/help', { template: require('./help.jade'), diff --git a/res/app/help/shell/index.js b/res/app/help/shell/index.js new file mode 100644 index 00000000..dd2de673 --- /dev/null +++ b/res/app/help/shell/index.js @@ -0,0 +1,6 @@ +module.exports = angular.module('stf.help.shell', []) + .config(['$routeProvider', function ($routeProvider) { + $routeProvider.when('/help/shell', { + template: require('./shell.jade') + }) + }]) diff --git a/res/app/help/shell/shell.jade b/res/app/help/shell/shell.jade new file mode 100644 index 00000000..14cd3926 --- /dev/null +++ b/res/app/help/shell/shell.jade @@ -0,0 +1,88 @@ +br +.page-title + h2 リモート・シェル参照 + +.row + .col-md-6 + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading ファイル一覧 + .widget-content.padded + pre ls -la + p シェル起動直後はディレクトリはルートです。 + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading パッケージ名列挙 + .widget-content.padded + pre pm list packages + p インストールされてるアプリのパッケージ名が列挙される。 + p パッケージ名を一部しか覚えていないときに pm list packages [パッケージ名] のようにフィルタリングすることができる。 + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading パッケージ削除 + .widget-content.padded + pre pm uninstall [パッケージ名] + p その他のパッケージ・マネジャーのコマンドは ADB pm | Android Developers を参照。 + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading ファイルの中身 + .widget-content.padded + pre cat /sdcard/hoge.txt + p 読み込み権限のあるファイルの中身を簡単に確認するときに使う。 + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading その他のシェルコマンド + .widget-content.padded + p 実行可能なシェルコマンドの一覧を取得するのに、下記のコマンドを実行する。 + pre ls /system/bin + + a(ng-href='https://github.com/jackpal/Android-Terminal-Emulator/wiki/Android-Shell-Command-Reference', target='_blank', role='button').btn.btn-primary + i.fa.fa-book + | もっと詳しいリファレンス + + + .col-md-6 + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading アプリの起動 + .widget-content.padded + strong Activityの起動 (ACTION_VIEW + URL) + pre am start -a android.intent.action.VIEW -d http://google.com + strong Activityの起動(クラス名を指定) + pre am start -n com.hoge.app/.FugaActivity + strong サービスの起動 + pre am startservice ... # Intentの指定方法はActivityと同じ + strong ブロードキャストの送信 + pre am broadcast ... # Intentの指定方法はActivityと同じ + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading キーイベント送信 + .widget-content.padded + pre input keyevent 3 # HOMEキー + p 数値でキーコードを指定する。 + p キーコードは KeyEvent | Android Developers を参照。 + + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading 画面録画 (KitKat4.4より) + .widget-content.padded + p 最大3分操作情報を録画できる。 + pre screenrecord [options] + p [options]は ADB screenrecord | Android Developers を参照。 + p filenameには端末側のパスを指定する。 + pre screenrecord /sdcard/movie/sample.mp4 + .row.padded + .col-md-12 + .widget-container.fluid-height + .heading メモリ専有状況 + .widget-content.padded + pre dumpsys procstats [パッケージ名] + p 例: dumpsys procstats com.android.chrome diff --git a/res/common/lang/po/stf.ja.po b/res/common/lang/po/stf.ja.po index 5bd599e8..f9647e39 100644 --- a/res/common/lang/po/stf.ja.po +++ b/res/common/lang/po/stf.ja.po @@ -121,10 +121,6 @@ msgstr "ブラウザ" msgid "Busy" msgstr "貸し出し中" -#: /Users/a12907/STF/stf/res/app/control-panes/control-panes-controller.js -msgid "CPU" -msgstr "CPU" - #: /Users/a12907/STF/stf/tmp/html/app/control-panes/advanced/input/input.html msgid "Camera" msgstr "カメラ" @@ -339,6 +335,10 @@ msgstr "フル" msgid "Get" msgstr "取得" +#: /Users/a12907/STF/stf/tmp/html/app/control-panes/dashboard/clipboard/clipboard.html +msgid "Get clipboard contents" +msgstr "クリップボードの中身を取得する" + #: /Users/a12907/STF/stf/tmp/html/app/control-panes/dashboard/navigation/navigation.html msgid "Go Back" msgstr "戻る" @@ -740,7 +740,7 @@ msgstr "すべての設定をリセット" #: /Users/a12907/STF/stf/tmp/html/app/control-panes/dashboard/browser/browser.html #: /Users/a12907/STF/stf/tmp/html/app/control-panes/dashboard/navigation/navigation.html msgid "Reset all browser settings" -msgstr "ブラウザの設定をリセット" +msgstr "ブラウザの設定をリセットする" #: /Users/a12907/STF/stf/tmp/html/app/components/stf/screen/screen.html msgid "Retrieving the device screen has timed out." @@ -770,6 +770,10 @@ msgstr "コマンドを実行" msgid "Run JavaScript" msgstr "JavaScript注入" +#: /Users/a12907/STF/stf/tmp/html/app/control-panes/dashboard/shell/shell.html +msgid "Run command" +msgstr "コマンドを実行する" + #: /Users/a12907/STF/stf/tmp/html/app/device-list/device-list.html #: /Users/a12907/STF/stf/tmp/html/app/control-panes/info/info.html msgid "SDK" @@ -1038,6 +1042,9 @@ msgstr "はい" msgid "You are no longer controlling the device." msgstr "この実機のリモート操作ができなくなりました。" +#~ msgid "CPU" +#~ msgstr "CPU" + #~ msgid "Device is not in use anymore" #~ msgstr "実機が使われなくなりました" diff --git a/res/common/lang/po/stf.pot b/res/common/lang/po/stf.pot index e8e7ec97..4f84d944 100644 --- a/res/common/lang/po/stf.pot +++ b/res/common/lang/po/stf.pot @@ -117,10 +117,6 @@ msgstr "" msgid "Busy" msgstr "" -#: /Users/a12907/STF/stf/res/app/control-panes/control-panes-controller.js -msgid "CPU" -msgstr "" - #: /Users/a12907/STF/stf/tmp/html/app/control-panes/advanced/input/input.html msgid "Camera" msgstr "" @@ -332,6 +328,10 @@ msgstr "" msgid "Get" msgstr "" +#: /Users/a12907/STF/stf/tmp/html/app/control-panes/dashboard/clipboard/clipboard.html +msgid "Get clipboard contents" +msgstr "" + #: /Users/a12907/STF/stf/tmp/html/app/control-panes/dashboard/navigation/navigation.html msgid "Go Back" msgstr "" @@ -763,6 +763,10 @@ msgstr "" msgid "Run JavaScript" msgstr "" +#: /Users/a12907/STF/stf/tmp/html/app/control-panes/dashboard/shell/shell.html +msgid "Run command" +msgstr "" + #: /Users/a12907/STF/stf/tmp/html/app/device-list/device-list.html #: /Users/a12907/STF/stf/tmp/html/app/control-panes/info/info.html msgid "SDK" diff --git a/res/common/lang/translations/stf.ja.json b/res/common/lang/translations/stf.ja.json index 58d35de2..6337c21b 100644 --- a/res/common/lang/translations/stf.ja.json +++ b/res/common/lang/translations/stf.ja.json @@ -1 +1 @@ -{"ja":{"(Absent)":"(オフライン)","-":"-","A new version of STF is available":"STFの新しいバージョンがリリースされました","ABI":"ABI","AC":"AC","Absent":"オフライン","Action":"アクション","Activity":"アクティビティ","Add":"追加","Advanced":"高度機能","Advanced Input":"高度な入力","Airplane Mode":"機内モード","App":"アプリ","App Store":"アプリストア","App Upload":"アプリアップロード","Apps":"アプリ","Available":"利用可能","Back":"戻る","Battery":"バッテリー","Battery Health":"バッテリー健康状態","Battery Level":"バッテリーレベル","Battery Source":"バッテリー電力源","Battery Status":"バッテリー状態","Battery Temperature":"バッテリー温度","Bluetooth":"Bluetooth","Browser":"ブラウザ","Busy":"貸し出し中","CPU":"CPU","Camera":"カメラ","Cannot access specified URL":"指定されたURLはアクセスできません","Carrier":"キャリア","Category":"カテゴリー","Charging":"充電中","Clear":"クリア","Clipboard":"クリップボード","Close":"閉じる","Cold":"コールド","Connected":"接続中","Connected successfully.":"接続できました。","Connecting...":"接続中...","Cookies":"クッキー","D-pad Center":"D-padセンター","D-pad Down":"D-pad下","D-pad Left":"D-pad左","D-pad Right":"D-pad右","D-pad Up":"D-pad上","Dashboard":"ダッシュボード","Data":"データ","Dead":"残量なし","Delete":"削除","Density":"表示密度","Details":"詳細","Developer Settings":"開発者向け設定","Device":"デバイス","Device was disconnected":"デバイスへの接続が切れました","Devices":"端末リスト","Discharging":"放電中","Disconnected.
Socket connection was lost, try again reloading the page.":"接続が切れました。
ソケット接続が失われました。もう一度ページを再ロードしてみてください。","Display":"ディスプレー","Domain":"ドメイン","Drop file to upload":"ここにファイルをドロップ","Dummy":"ダミー","Eject":"排出","Enable notifications":"通知を有効にする","Encrypted":"暗号化","Error":"エラー","Error while connecting.":"接続中にエラーが発生しました。","Error while getting data":"データ取得中にエラーが発生しました。","Error while reconnecting.":"再接続中にエラーが発生しました。","Error.":"エラー","Ethernet":"イーサーネット","FPS":"FPS","Failed to download file":"ファイルのダウンロードが失敗しした。","Fast Forward":"早送り","Filter":"フィルター","Find Device":"実機を探す","Forward Ports":"ポートフォワード","Full":"フル","Get":"取得","Go Back":"戻る","Go Forward":"進む","Go to Device List":"端末リストへ","Good":"良い","Hardware":"ハードウェア","Health":"健康状態","Height":"高さ","Help":"ヘルプ","Hide Screen":"画面を非表しない","Home":"ホーム","Host":"ホスト","Hostname":"ホスト名","ICCID":"ICCID","ID":"ID","IMEI":"IMEI","Info":"情報","Inspect Device":"端末の要素検証","Inspecting is currently only supported in WebView":"要素の検証機能は、現在WebViewのみ対応","Inspector":"要素の検証","Installation failed":"インストールが失敗しました","Installing app...":"アプリをインストール中...","Landscape":"横","Language":"言語","Launch Activity":"アクティビティを起動する","Launching activity...":"アクティビティを起動中...","Level":"レベル","Local Settings":"ローカル設定","Location":"場所","Logs":"ログ","Manage Apps":"アプリ管理","Manufacturer":"メーカー","Media":"メディア","Menu":"メニュー","Mobile":"モバイル","Mobile DUN":"モバイルDUN","Mobile High Priority":"モバイル最優先","Mobile MMS":"モバイルMMS","Mobile SUPL":"モバイルSUPL","Model":"機種名","Model:":"機種名:","Mute":"音を消す","N/A":"適用なし","Name":"ネーム","Native":"Native","Navigation":"ブラウジング","Network":"ネットワーク","Next":"次","No":"いいえ","No clipboard data":"クリップボードデータはありません","No cookies to show":"クッキーはありません","No device screen":"画面が表示できません","No devices connected":"端末が接続されていません","No screenshots taken":"キャプチャはありません","Not Charging":"充電されていない","Nothing to inspect":"要素の検証対象はありません","Notifications":"通知","Number":"番号","OS":"OS","Offline":"オフライン","Open":"開く","Orientation":"方向","Over Voltage":"過電圧","Overheat":"過熱","PID":"PID","Package":"パッケージ","Path":"パス","Pause":"停止","Phone":"電話番号","Phone ICCID":"携帯ICCID","Phone IMEI":"携帯IMEI","Place":"場所","Platform":"プラットホーム","Play":"再生","Play/Pause":"再生/停止","Port":"ポート","Port forwarding":"ポートフォワーディング","Portrait":"縦","Power":"電源","Power Source":"電力源","Preparing":"準備中","Present":"存在する","Previous":"前","Processing...":"処理中...","Product":"型番","Pushing app...":"アプリをプッシュ中...","Ready":"利用可能","Reconnected successfully.":"正常に再接続しました。","Reconnecting...":"再接続中...","Record":"記録する","Reference":"参考","Refresh":"更新","Relaunch":"再起動","Relaunch the browser":"ブラウザを再起動する","Released":"発売日","Reload":"再読込","Reset":"初期化","Reset Settings":"すべての設定をリセット","Reset all browser settings":"ブラウザの設定をリセット","Retrieving the device screen has timed out.":"実機画面の取得はタイムアウトになりました。","Retry":"再試行","Rewind":"巻き戻す","Roaming":"ローミング","Run":"実行","Run Command":"コマンドを実行","Run JavaScript":"JavaScript注入","SDK":"SDK","SIM":"SIM","Save...":"保存する...","Saved to: {{savedTo}}":"保存先: {{savedTo}}","Screen":"解像度","Screenshot":"キャプチャ","Screenshots":"キャプチャ","Search":"検索","Secure":"セキュア","Serial":"シリアル","Set":"設定","Set Cookie":"クッキー設定","Settings":"設定","Shell":"シェル","Show All":"すべてを表示","Show Screen":"画面を表示する","Special Keys":"特別なキー","Start/Stop Logging":"ログ取得の開始/停止","Status":"ステータス","Stop":"停止","Stop Using":"停止する","Sub Type":"サブタイプ","Switch Charset":"文字入力の切り替え","TID":"TID","Tag":"タグ","Take Pageshot (Needs WebView running)":"ページ全体ショットを撮る(現在はWebViewのみ対応)","Take Screenshot":"スクリーンショットを撮る","Temperature":"温度","Text":"テキスト","This might be caused by a network error, or you might be trying to access a secure view.":"起因として考えられるものは下記の通りです。・ネットワーク・エラー・暗号化されたビュー","Time":"時刻","Try to reconnect":"再接続する","Type":"タイプ","USB":"USB","Unauthorized":"権限外","Unforward Ports":"ポートフォワード解除","Uninstall":"削除","Unknown":"未知","Unspecified Failure":"未定義の失敗","Upload From Link":"リンク先よりアップロードする","Upload complete":"アップロードが完了しました","Upload failed":"アップロードが失敗しました","Uploaded file is not valid":"アップロードされたファイル","Uploading...":"アップロード中...","Usb speed":"USB速度","Use":"利用する","User":"ユーザ","Using Fallback":"フォールバックを使用中","Value":"値","Version":"バージョン","Version Update":"バージョンアップ","Voltage":"電圧","Volume":"音量","Volume Down":"音量↓","Volume Up":"音量↑","Web":"Web","WiFi":"無線LAN","WiFi Settings":"無線LAN設定","WiMAX":"WiMAX","Width":"幅","Wireless":"無線","X DPI":"X DPI","Y DPI":"Y DPI","Yes":"はい","You are no longer controlling the device.":"この実機のリモート操作ができなくなりました。","Device is not in use anymore":"実機が使われなくなりました","Device Port":"端末側のポート","Example: 3000":"例:3000","Local":"ローカル","Maker":"メーカー","Release":"リリース","Target IP / Hostname":"ローカル側のIP / ホスト名","Target Port":"ローカル側のポート","Target host (detect if blank)":"対象ホスト(空のときは自動検知)","Using":"利用中","(Needs refreshing the page)":"(ページの再読込が必要)","Aa":"あA","Control":"リモート操作","Detected":"検知済み","Failed to get device screen":"端末の画面が取得できません","H":"高","High":"高画質","High Quality":"高画質","Image Quality":"画質","Inspect":"要素の検証","Just control device":"端末を操作のみする","Keyboard Input":"キーボード入力","L":"低","Local storage":"ローカルストレージ","Low":"低画質","Low Quality":"低画質","M":"中","Medium":"中画質","Medium Quality":"中画質","Original":"原寸","Other Keys":"キー・その他","Pageshot":"ページ全体","Power Button":"電源ボタン","Release Date":"発売日","Resources":"リソース","Start Using":"利用する","System":"システム","Terminal":"ターミナル","Types text. Only ASCII characters are supported.":"テキストをタイピングします。ASCII文字のみ入力が可能。","USB Speed Benchmark":"USBベンチマーク","View device":"デバイスを表示する","{{ started ? 'Stop' : 'Start' }}":"{{ started ? '停止' : '取得' }}","Start":"開始","{{ device.control ? 'Stop' : 'Use' }}":"{{ device.control ? '停止する' : '利用する' }}","Inspect Current Page":"開いているページを検証","Input":"入力"}} \ No newline at end of file +{"ja":{"(Absent)":"(オフライン)","-":"-","A new version of STF is available":"STFの新しいバージョンがリリースされました","ABI":"ABI","AC":"AC","Absent":"オフライン","Action":"アクション","Activity":"アクティビティ","Add":"追加","Advanced":"高度機能","Advanced Input":"高度な入力","Airplane Mode":"機内モード","App":"アプリ","App Store":"アプリストア","App Upload":"アプリアップロード","Apps":"アプリ","Available":"利用可能","Back":"戻る","Battery":"バッテリー","Battery Health":"バッテリー健康状態","Battery Level":"バッテリーレベル","Battery Source":"バッテリー電力源","Battery Status":"バッテリー状態","Battery Temperature":"バッテリー温度","Bluetooth":"Bluetooth","Browser":"ブラウザ","Busy":"貸し出し中","Camera":"カメラ","Cannot access specified URL":"指定されたURLはアクセスできません","Carrier":"キャリア","Category":"カテゴリー","Charging":"充電中","Clear":"クリア","Clipboard":"クリップボード","Close":"閉じる","Cold":"コールド","Connected":"接続中","Connected successfully.":"接続できました。","Connecting...":"接続中...","Cookies":"クッキー","D-pad Center":"D-padセンター","D-pad Down":"D-pad下","D-pad Left":"D-pad左","D-pad Right":"D-pad右","D-pad Up":"D-pad上","Dashboard":"ダッシュボード","Data":"データ","Dead":"残量なし","Delete":"削除","Density":"表示密度","Details":"詳細","Developer Settings":"開発者向け設定","Device":"デバイス","Device was disconnected":"デバイスへの接続が切れました","Devices":"端末リスト","Discharging":"放電中","Disconnected.
Socket connection was lost, try again reloading the page.":"接続が切れました。
ソケット接続が失われました。もう一度ページを再ロードしてみてください。","Display":"ディスプレー","Domain":"ドメイン","Drop file to upload":"ここにファイルをドロップ","Dummy":"ダミー","Eject":"排出","Enable notifications":"通知を有効にする","Encrypted":"暗号化","Error":"エラー","Error while connecting.":"接続中にエラーが発生しました。","Error while getting data":"データ取得中にエラーが発生しました。","Error while reconnecting.":"再接続中にエラーが発生しました。","Error.":"エラー","Ethernet":"イーサーネット","FPS":"FPS","Failed to download file":"ファイルのダウンロードが失敗しした。","Fast Forward":"早送り","Filter":"フィルター","Find Device":"実機を探す","Forward Ports":"ポートフォワード","Full":"フル","Get":"取得","Get clipboard contents":"クリップボードの中身を取得する","Go Back":"戻る","Go Forward":"進む","Go to Device List":"端末リストへ","Good":"良い","Hardware":"ハードウェア","Health":"健康状態","Height":"高さ","Help":"ヘルプ","Hide Screen":"画面を非表しない","Home":"ホーム","Host":"ホスト","Hostname":"ホスト名","ICCID":"ICCID","ID":"ID","IMEI":"IMEI","Info":"情報","Inspect Device":"端末の要素検証","Inspecting is currently only supported in WebView":"要素の検証機能は、現在WebViewのみ対応","Inspector":"要素の検証","Installation failed":"インストールが失敗しました","Installing app...":"アプリをインストール中...","Landscape":"横","Language":"言語","Launch Activity":"アクティビティを起動する","Launching activity...":"アクティビティを起動中...","Level":"レベル","Local Settings":"ローカル設定","Location":"場所","Logs":"ログ","Manage Apps":"アプリ管理","Manufacturer":"メーカー","Media":"メディア","Menu":"メニュー","Mobile":"モバイル","Mobile DUN":"モバイルDUN","Mobile High Priority":"モバイル最優先","Mobile MMS":"モバイルMMS","Mobile SUPL":"モバイルSUPL","Model":"機種名","Model:":"機種名:","Mute":"音を消す","N/A":"適用なし","Name":"ネーム","Native":"Native","Navigation":"ブラウジング","Network":"ネットワーク","Next":"次","No":"いいえ","No clipboard data":"クリップボードデータはありません","No cookies to show":"クッキーはありません","No device screen":"画面が表示できません","No devices connected":"端末が接続されていません","No screenshots taken":"キャプチャはありません","Not Charging":"充電されていない","Nothing to inspect":"要素の検証対象はありません","Notifications":"通知","Number":"番号","OS":"OS","Offline":"オフライン","Open":"開く","Orientation":"方向","Over Voltage":"過電圧","Overheat":"過熱","PID":"PID","Package":"パッケージ","Path":"パス","Pause":"停止","Phone":"電話番号","Phone ICCID":"携帯ICCID","Phone IMEI":"携帯IMEI","Place":"場所","Platform":"プラットホーム","Play":"再生","Play/Pause":"再生/停止","Port":"ポート","Port forwarding":"ポートフォワーディング","Portrait":"縦","Power":"電源","Power Source":"電力源","Preparing":"準備中","Present":"存在する","Previous":"前","Processing...":"処理中...","Product":"型番","Pushing app...":"アプリをプッシュ中...","Ready":"利用可能","Reconnected successfully.":"正常に再接続しました。","Reconnecting...":"再接続中...","Record":"記録する","Reference":"参考","Refresh":"更新","Relaunch":"再起動","Relaunch the browser":"ブラウザを再起動する","Released":"発売日","Reload":"再読込","Reset":"初期化","Reset Settings":"すべての設定をリセット","Reset all browser settings":"ブラウザの設定をリセットする","Retrieving the device screen has timed out.":"実機画面の取得はタイムアウトになりました。","Retry":"再試行","Rewind":"巻き戻す","Roaming":"ローミング","Run":"実行","Run Command":"コマンドを実行","Run JavaScript":"JavaScript注入","Run command":"コマンドを実行する","SDK":"SDK","SIM":"SIM","Save...":"保存する...","Saved to: {{savedTo}}":"保存先: {{savedTo}}","Screen":"解像度","Screenshot":"キャプチャ","Screenshots":"キャプチャ","Search":"検索","Secure":"セキュア","Serial":"シリアル","Set":"設定","Set Cookie":"クッキー設定","Settings":"設定","Shell":"シェル","Show All":"すべてを表示","Show Screen":"画面を表示する","Special Keys":"特別なキー","Start/Stop Logging":"ログ取得の開始/停止","Status":"ステータス","Stop":"停止","Stop Using":"停止する","Sub Type":"サブタイプ","Switch Charset":"文字入力の切り替え","TID":"TID","Tag":"タグ","Take Pageshot (Needs WebView running)":"ページ全体ショットを撮る(現在はWebViewのみ対応)","Take Screenshot":"スクリーンショットを撮る","Temperature":"温度","Text":"テキスト","This might be caused by a network error, or you might be trying to access a secure view.":"起因として考えられるものは下記の通りです。・ネットワーク・エラー・暗号化されたビュー","Time":"時刻","Try to reconnect":"再接続する","Type":"タイプ","USB":"USB","Unauthorized":"権限外","Unforward Ports":"ポートフォワード解除","Uninstall":"削除","Unknown":"未知","Unspecified Failure":"未定義の失敗","Upload From Link":"リンク先よりアップロードする","Upload complete":"アップロードが完了しました","Upload failed":"アップロードが失敗しました","Uploaded file is not valid":"アップロードされたファイル","Uploading...":"アップロード中...","Usb speed":"USB速度","Use":"利用する","User":"ユーザ","Using Fallback":"フォールバックを使用中","Value":"値","Version":"バージョン","Version Update":"バージョンアップ","Voltage":"電圧","Volume":"音量","Volume Down":"音量↓","Volume Up":"音量↑","Web":"Web","WiFi":"無線LAN","WiFi Settings":"無線LAN設定","WiMAX":"WiMAX","Width":"幅","Wireless":"無線","X DPI":"X DPI","Y DPI":"Y DPI","Yes":"はい","You are no longer controlling the device.":"この実機のリモート操作ができなくなりました。","CPU":"CPU","Device is not in use anymore":"実機が使われなくなりました","Device Port":"端末側のポート","Example: 3000":"例:3000","Local":"ローカル","Maker":"メーカー","Release":"リリース","Target IP / Hostname":"ローカル側のIP / ホスト名","Target Port":"ローカル側のポート","Target host (detect if blank)":"対象ホスト(空のときは自動検知)","Using":"利用中","(Needs refreshing the page)":"(ページの再読込が必要)","Aa":"あA","Control":"リモート操作","Detected":"検知済み","Failed to get device screen":"端末の画面が取得できません","H":"高","High":"高画質","High Quality":"高画質","Image Quality":"画質","Inspect":"要素の検証","Just control device":"端末を操作のみする","Keyboard Input":"キーボード入力","L":"低","Local storage":"ローカルストレージ","Low":"低画質","Low Quality":"低画質","M":"中","Medium":"中画質","Medium Quality":"中画質","Original":"原寸","Other Keys":"キー・その他","Pageshot":"ページ全体","Power Button":"電源ボタン","Release Date":"発売日","Resources":"リソース","Start Using":"利用する","System":"システム","Terminal":"ターミナル","Types text. Only ASCII characters are supported.":"テキストをタイピングします。ASCII文字のみ入力が可能。","USB Speed Benchmark":"USBベンチマーク","View device":"デバイスを表示する","{{ started ? 'Stop' : 'Start' }}":"{{ started ? '停止' : '取得' }}","Start":"開始","{{ device.control ? 'Stop' : 'Use' }}":"{{ device.control ? '停止する' : '利用する' }}","Inspect Current Page":"開いているページを検証","Input":"入力"}} \ No newline at end of file