2021-06-29 04:03:36 -05:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2023-01-02 00:23:55 -06:00
|
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
2021-06-29 04:03:36 -05:00
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
define('pgadmin.browser.messages',['sources/pgadmin'], function(pgAdmin) {
|
2022-09-08 07:38:58 -05:00
|
|
|
let pgBrowser = pgAdmin.Browser = pgAdmin.Browser || {};
|
2021-06-29 04:03:36 -05:00
|
|
|
|
|
|
|
if (pgBrowser.messages)
|
|
|
|
return pgBrowser.messages;
|
|
|
|
|
|
|
|
pgBrowser.messages = {
|
|
|
|
'CANNOT_BE_EMPTY': '\'%s\' cannot be empty.',
|
2021-08-03 02:08:36 -05:00
|
|
|
'MUST_BE_INT': '\'%s\' must be an integer.'
|
2021-06-29 04:03:36 -05:00
|
|
|
};
|
|
|
|
return pgBrowser;
|
|
|
|
});
|