You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"HEALTH_DATA_DO_TRACK": "Share anonymous information on how I use {APP_NAME}",
101307
-
"HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} <strong>does not collect or process any personally identifiable information</strong>, but <strong>collects anonymous usage statistics</strong> to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.<br><br> You can see your data or <strong>choose not to share any anonymous data</strong> by selecting <strong>Help > Health Report</strong>. These <strong>anonymous</strong> app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you! <br><br>",
101308
+
"HEALTH_DATA_NOTIFICATION_MESSAGE": "{APP_NAME} <strong>does not collect or process any personally identifiable information</strong>, but <strong>collects anonymous usage statistics</strong> to guard your privacy. Anonymous data is exempt from GDPR/CCPA notification requirements, but we believe you need to have a choice to opt out of anonymous data collection as well.<br><br> You can see your data or <strong>choose not to share any anonymous data</strong> by selecting <strong>Help > Health Report</strong>. These <strong>anonymous</strong> app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}. Without this data, we would not know what features it is worth building for you! <br>",
101308
101309
"HEALTH_DATA_PREVIEW": "{APP_NAME} Health Report",
101309
101310
"HEALTH_DATA_PREVIEW_INTRO": "<p>{APP_NAME} <strong>does not collect or process any personally identifiable information</strong>, but <strong>collects anonymous usage statistics</strong> to guard your privacy. These <strong>anonymous</strong> app usage statistics and error reports helps prioritize features, find bugs, and spot usability issues for improving your experience with {APP_NAME}.</p> <p>Below is a preview of the data that will be sent in your next Health Report <em>if</em> it is enabled. (Also see developer console for error logs marked 'Caught Critical error'.)</p>",
"NEW_PROJECT_NOTIFICATION": "Click this icon to open the `New Project` window again.</br> See Recent Projects, Open Folder or start projects from templates.</br> <img src=\"styles/images/new_project.png\"> <br/> <a href='#' style='float:right;'>ok</a>",
101648
-
"BEAUTIFY_CODE_NOTIFICATION": "Click here or press <b>`{0}`</b> to Beautify code. </br> <img src=\"styles/images/beautify.gif\"> <br/> <a href='#' style='float:right;'>ok</a>",
101649
-
"DEFAULT_PROJECT_NOTIFICATION": "Click here to open the <br/><b>default project</b> in phoenix. </br> <a href='#' style='float:right;'>ok</a>",
101648
+
"NEW_PROJECT_NOTIFICATION": "Click this icon to open the `Start Project` window again.</br> See Recent Projects, Open Folder or start projects from templates.</br> <img src=\"styles/images/new_project.png\">",
101649
+
"BEAUTIFY_CODE_NOTIFICATION": "Click here or press <b>`{0}`</b> to beautify code. </br> <img src=\"styles/images/beautify.gif\">",
101650
+
"DEFAULT_PROJECT_NOTIFICATION": "Click here to open the <br/><b>default project</b> in {APP_NAME}. </br> <a href='#' style='float:right;'>ok</a>",
101650
101651
"DIRECTORY_REPLACE_MESSAGE": "The selected folder <span class='dialog-filename'>{0}</span> is not empty. Are you sure you want to replace the folder contents with the project?",
101651
101652
"DEFAULT_PROJECT_HTML_CLICK_HERE": "Click here to locate this <span> in the HTML file",
"ERROR_NO_REMOTE_SELECTED": "No remote has been selected for {0}!",
101956
101957
"ERROR_BRANCH_LIST": "Getting branch list failed",
101957
101958
"ERROR_FETCH_REMOTE": "Fetching remote information failed",
101959
+
"GIT_TOAST_TITLE": "Explore Git Features in Phoenix Code",
101960
+
"GIT_TOAST_MESSAGE": "Click the Git panel icon to manage your repository. Easily commit, push, pull, and view your project history—all in one place.<br><a href='https://docs.phcode.dev/docs/Features/git'>Learn more about the Git panel →</a>",
101958
101961
101959
101962
// surveys
101960
101963
"SURVEY_TITLE_VOTE_FOR_FEATURES_YOU_WANT": "Vote for the features you want to see next!"
@@ -172899,6 +172902,7 @@ define("widgets/NotificationUI", function (require, exports, module) {
172899
172902
* });
172900
172903
* ```
172901
172904
*
172905
+
* @param {string} title The title for the notification.
172902
172906
* @param {string|Element} template A string template or HTML Element to use as the dialog HTML.
172903
172907
* @param {String} [elementID] optional id string if provided will show the notification pointing to the element.
172904
172908
* If no element is specified, it will be managed as a generic notification.
@@ -172908,19 +172912,21 @@ define("widgets/NotificationUI", function (require, exports, module) {
172908
172912
* Values can be a mix of `['top', 'bottom', 'left', 'right']`
172909
172913
* * `autoCloseTimeS` - Time in seconds after which the notification should be auto closed. Default is never.
172910
172914
* * `dismissOnClick` - when clicked, the notification is closed. Default is true(dismiss).
172915
+
* * `toastStyle` - To style the toast notification for error, warning, info etc. Can be
172916
+
* one of `NotificationUI.NOTIFICATION_STYLES_CSS_CLASS.*` or your own css class name.
172911
172917
* @return {Notification} Object with a done handler that resolves when the notification closes.
172912
172918
* @type {function}
172913
172919
*/
172914
-
function createFromTemplate(template, elementID, options= {}) {
172920
+
function createFromTemplate(title, template, elementID, options= {}) {
0 commit comments