File tree Expand file tree Collapse file tree 5 files changed +3
-4
lines changed Expand file tree Collapse file tree 5 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 5
5
-->
6
6
< html lang ="en-us ">
7
7
< head >
8
- < title > ...</ title >
8
+ < title id =" title " > ...</ title >
9
9
< link href ="prompt.css " rel ="stylesheet " />
10
10
</ head >
11
11
< body >
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ function promptRegister() {
59
59
document . querySelector ( '#ok' ) . textContent = window . api . i18n . t ( 'dialog-button-ok' ) ;
60
60
document . querySelector ( '#cancel' ) . textContent = window . api . i18n . t ( 'dialog-button-cancel' ) ;
61
61
document . querySelector ( '#label' ) . textContent = window . api . i18n . t ( 'dialog-passphrase-prompt-label' ) ;
62
+ document . querySelector ( '#title' ) . textContent = window . api . i18n . t ( 'dialog-passphrase-prompt-title' ) ;
62
63
63
64
const height = document . querySelector ( 'body' ) . offsetHeight ;
64
65
window . api . ipc . sendSync ( 'prompt-size:' + promptId , height ) ;
Original file line number Diff line number Diff line change 5
5
*/
6
6
const path = require ( 'path' ) ;
7
7
const { BrowserWindow, ipcMain } = require ( 'electron' ) ;
8
- const i18n = require ( './i18next.config' ) ;
9
8
10
9
/* global __dirname */
11
10
@@ -33,7 +32,6 @@ async function getCredentialPassphrase(parentWindow) {
33
32
alwaysOnTop : false ,
34
33
useContentSize : true ,
35
34
modal : Boolean ( parentWindow ) ,
36
- title : i18n . t ( 'dialog-passphrase-prompt-title' ) ,
37
35
menuBarVisible : false ,
38
36
webPreferences : {
39
37
nodeIntegration : false ,
Original file line number Diff line number Diff line change 125
125
"dialog-invalid-oracle-home-title" : " Invalid Oracle Home Directory" ,
126
126
"dialog-invalid-oracle-home-not-specified" : " Oracle Home is not specified." ,
127
127
"dialog-invalid-oracle-home-not-valid" : " Specified Oracle Home {{oracleHome}} is not valid." ,
128
- "dialog-passphrase-prompt-title" : " Credential Encryption Passphrase" ,
129
128
"dialog-https-proxy-url-label" : " HTTPS Proxy URL" ,
130
129
"dialog-bypass-proxy-hosts-label" : " Bypass Proxy Hosts" ,
131
130
Original file line number Diff line number Diff line change 144
144
"user-settings-dialog-quickstart-skip-label" : " Skip Showing Introduction at Startup" ,
145
145
"user-settings-dialog-quickstart-skip-help" : " Whether or not to skip showing the WebLogic Kubernetes Toolkit UI Introduction at application startup." ,
146
146
147
+ "dialog-passphrase-prompt-title" : " Credential Encryption Passphrase" ,
147
148
"dialog-passphrase-prompt-label" : " Please enter the passphrase to use to encrypt the project credential." ,
148
149
149
150
"model-design-coming-soon" : " Coming Soon..." ,
You can’t perform that action at this time.
0 commit comments