1fbbae0934
- show full license Signed-off-by: Rash419 <rashesh.padia@collabora.com> Change-Id: Ia51012b5277e6666733fc83441754276a79759da
71 lines
3.2 KiB
JavaScript
71 lines
3.2 KiB
JavaScript
/* -*- js-indent-level: 8 -*- */
|
|
/*
|
|
* Copyright the Collabora Online contributors.
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
/* Stringtable for Admin Console User Interface */
|
|
var l10nstrings = {};
|
|
|
|
l10nstrings.strProductName = 'Collabora Online Development Edition (unbranded)';
|
|
l10nstrings.strAdminConsole = _('Admin console');
|
|
l10nstrings.strSettings = _('Settings');
|
|
l10nstrings.strOverview = _('Overview');
|
|
l10nstrings.strCurrent = _('(current)');
|
|
l10nstrings.strAnalytics = _('Analytics');
|
|
l10nstrings.strHistory = _('History');
|
|
l10nstrings.strLog = _('Log');
|
|
l10nstrings.strDashboard = _('Dashboard');
|
|
l10nstrings.strUsersOnline = _('Users online');
|
|
l10nstrings.strUserName = _('User Name');
|
|
l10nstrings.strDocumentsOpen = _('Documents open');
|
|
l10nstrings.strUsers = _(' user(s).');
|
|
l10nstrings.strUserOpenDocuments = _(' document(s) open.');
|
|
l10nstrings.strDocumentNumber = _('Number of Documents');
|
|
l10nstrings.strMemoryConsumed = _('Memory consumed');
|
|
l10nstrings.strSentBytes = _('Bytes sent');
|
|
l10nstrings.strRecvBytes = _('Bytes received');
|
|
l10nstrings.strPid = _('PID');
|
|
l10nstrings.strDocument = _('Document');
|
|
l10nstrings.strViewers = _('Views');
|
|
l10nstrings.strElapsedTime = _('Elapsed time');
|
|
l10nstrings.strIdleTime = _('Idle time');
|
|
l10nstrings.strModified = _('Modified');
|
|
l10nstrings.strUploaded = _('Uploaded');
|
|
l10nstrings.strWopihost = _('WOPI host');
|
|
l10nstrings.strKill = _('Kill');
|
|
l10nstrings.strGraphs = _('Graphs');
|
|
l10nstrings.strMemoryGraph = _('Memory Graph');
|
|
l10nstrings.strCpuGraph = _('CPU Graph');
|
|
l10nstrings.strNetGraph = _('Network Graph');
|
|
l10nstrings.strSave = _('Save');
|
|
l10nstrings.strMemoryStatsCachesize = _('Cache size of memory statistics');
|
|
l10nstrings.strMemoryStatsInterval = _('Time interval of memory statistics (in ms)');
|
|
l10nstrings.strCpuStatsCachesize = _('Cache size of CPU statistics');
|
|
l10nstrings.strCpuStatsInterval = _('Time interval of CPU statistics (in ms)');
|
|
l10nstrings.strKillSessionToolTip = _('Kill session.');
|
|
l10nstrings.strLimitVirtMemMb = _('Maximum Document process virtual memory (in MB) - reduce only');
|
|
l10nstrings.strLimitStackMemKb = _('Maximum Document process stack memory (in KB) - reduce only');
|
|
l10nstrings.strLimitFileSizeMb = _('Maximum file size allowed to write to disk (in MB) - reduce only');
|
|
l10nstrings.strDocuments = _('Documents:');
|
|
l10nstrings.strExpired = _('Expired:');
|
|
l10nstrings.strRefresh = _('Refresh');
|
|
l10nstrings.strShutdown = _('Shutdown Server');
|
|
l10nstrings.strServerUptime = _('Server uptime');
|
|
l10nstrings.strRefreshLog = _('Refresh Log');
|
|
l10nstrings.strChannelFilter = _('Channel Filter:');
|
|
l10nstrings.strChannelFilterNone = _('None');
|
|
l10nstrings.strSetLogLevels = _('Set Log Levels');
|
|
l10nstrings.strLogLevels = _('Log Levels');
|
|
l10nstrings.strCloseModal = _('Close');
|
|
l10nstrings.strUpdateLogLevels = _('Update Log Levels');
|
|
l10nstrings.strVersionInfo = _('Version Information');
|
|
l10nstrings.strLicense = _('License');
|
|
l10nstrings.strAbout = _('About');
|
|
if (module) {
|
|
module.exports = l10nstrings;
|
|
}
|