antares/src/renderer/i18n/en-US.js

115 lines
3.5 KiB
JavaScript
Raw Normal View History

2020-05-25 15:37:59 +02:00
module.exports = {
word: {
edit: 'Edit',
save: 'Save',
close: 'Close',
delete: 'Delete',
confirm: 'Confirm',
cancel: 'Cancel',
send: 'Send',
2020-05-31 17:56:33 +02:00
connectionName: 'Connection name',
2020-05-25 15:37:59 +02:00
client: 'Client',
hostName: 'Host name',
port: 'Port',
user: 'User',
password: 'Password',
credentials: 'Credentials',
connect: 'Connect',
connected: 'Connected',
disconnect: 'Disconnect',
disconnected: 'Disconnected',
2020-05-26 18:10:11 +02:00
refresh: 'Refresh',
2020-05-30 12:54:05 +02:00
settings: 'Settings',
general: 'General',
themes: 'Themes',
update: 'Update',
about: 'About',
language: 'Language',
2020-05-31 17:56:33 +02:00
version: 'Version',
2020-06-10 19:29:10 +02:00
donate: 'Donate',
run: 'Run',
2020-06-12 18:10:45 +02:00
schema: 'Schema',
results: 'Results',
size: 'Size',
2020-07-31 15:45:32 +02:00
seconds: 'Seconds',
2020-08-03 18:07:08 +02:00
type: 'Type',
mimeType: 'Mime-Type',
download: 'Download',
2020-08-10 18:09:33 +02:00
add: 'Add',
data: 'Data',
2020-08-12 18:12:30 +02:00
properties: 'Properties',
insert: 'Insert',
connecting: 'Connecting',
name: 'Name',
collation: 'Collation',
2020-10-24 14:47:35 +02:00
clear: 'Clear',
options: 'Options',
autoRefresh: 'Auto-refresh',
indexes: 'Indexes',
foreignKeys: 'Foreign keys',
length: 'Length',
unsigned: 'Unsigned',
default: 'Default',
comment: 'Comment',
key: 'Key | Keys',
order: 'Order'
2020-05-25 15:37:59 +02:00
},
message: {
appWelcome: 'Welcome to Antares SQL Client!',
appFirstStep: 'Your first step: create a new database connection.',
addConnection: 'Add connection',
createConnection: 'Create connection',
createNewConnection: 'Create new connection',
askCredentials: 'Ask for credentials',
testConnection: 'Test connection',
editConnection: 'Edit connection',
deleteConnection: 'Delete connection',
2020-10-01 15:08:35 +02:00
deleteCorfirm: 'Do you confirm the cancellation of',
2020-06-02 19:13:57 +02:00
connectionSuccessfullyMade: 'Connection successfully made!',
2020-06-19 18:03:52 +02:00
madeWithJS: 'Made with 💛 and JavaScript!',
checkForUpdates: 'Check for updates',
noUpdatesAvailable: 'No updates available',
checkingForUpdate: 'Checking for updates',
checkFailure: 'Check failed, please try later',
updateAvailable: 'Update available',
downloadingUpdate: 'Downloading update',
updateDownloaded: 'Update downloaded',
2020-06-26 18:14:16 +02:00
restartToInstall: 'Restart Antares to install',
unableEditFieldWithoutPrimary: 'Unable to edit a field without a primary key in resultset',
editCell: 'Edit cell',
2020-07-23 19:10:14 +02:00
deleteRows: 'Delete row | Delete {count} rows',
confirmToDeleteRows: 'Do you confirm to delete one row? | Do you confirm to delete {count} rows?',
2020-08-03 18:07:08 +02:00
notificationsTimeout: 'Notifications timeout',
2020-08-12 18:12:30 +02:00
uploadFile: 'Upload file',
addNewRow: 'Add new row',
2020-08-19 18:20:57 +02:00
numberOfInserts: 'Number of inserts',
openNewTab: 'Open a new tab',
affectedRows: 'Affected rows',
createNewDatabase: 'Create new Database',
2020-09-25 12:39:58 +02:00
databaseName: 'Database name',
2020-10-01 15:08:35 +02:00
serverDefault: 'Server default',
deleteDatabase: 'Delete database',
2020-10-24 14:47:35 +02:00
editDatabase: 'Edit database',
clearChanges: 'Clear changes',
addNewField: 'Add new field',
manageIndexes: 'Manage indexes',
manageForeignKeys: 'Manage foreign keys',
allowNull: 'Allow NULL',
zeroFill: 'Zero fill'
2020-05-25 15:37:59 +02:00
},
// Date and Time
short: {
year: 'numeric',
month: 'short',
day: 'numeric'
},
long: {
year: 'numeric',
month: 'short',
day: 'numeric',
weekday: 'short',
hour: 'numeric',
minute: 'numeric'
}
};