From c8ed1ece6ea43476dbc69ac963ed63b5a4c82450 Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Thu, 1 Jun 2017 13:33:49 +0200 Subject: Putting endpoint URL within input field Signed-off-by: Patrik Kernstock --- templates/settings-admin.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/settings-admin.php b/templates/settings-admin.php index a6e7514..ab4359d 100644 --- a/templates/settings-admin.php +++ b/templates/settings-admin.php @@ -69,5 +69,9 @@ style('serverinfo', 'style');

t('External monitoring tool'));?>

- t('You can connect an external monitoring tool by using this end point: ') . $_['ocs']);?> + t('You can connect an external monitoring tool by using this end point:')); ?> +

+
+ +
-- cgit v1.2.3 From da621baf8f15ec08da5408bb82ee8abfd2aebff7 Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Thu, 1 Jun 2017 13:36:33 +0200 Subject: Selecting URL when clicking on input field Signed-off-by: Patrik Kernstock --- js/script.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/script.js b/js/script.js index 08dfa6e..598085a 100644 --- a/js/script.js +++ b/js/script.js @@ -36,6 +36,10 @@ updateShareStatistics(); setHumanReadableSizeToElement("dataBaseSize"); setHumanReadableSizeToElement("phpUploadMaxSize"); + + $("#monitoring-endpoint-url").on('click', function() { + $(this).select(); + }); function updateInfo() { var url = OC.generateUrl('/apps/serverinfo/update'); -- cgit v1.2.3 From 0752b4d29ad86c9a68bb29f00053147bfd27fa0f Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Wed, 18 Jul 2018 22:29:23 +0200 Subject: Beautified JS code a bit, e.g. indents Signed-off-by: Patrik Kernstock --- js/script.js | 192 +++++++++++++++++++++++++++++++---------------------------- 1 file changed, 100 insertions(+), 92 deletions(-) diff --git a/js/script.js b/js/script.js index 598085a..24f6d08 100644 --- a/js/script.js +++ b/js/script.js @@ -36,10 +36,10 @@ updateShareStatistics(); setHumanReadableSizeToElement("dataBaseSize"); setHumanReadableSizeToElement("phpUploadMaxSize"); - + $("#monitoring-endpoint-url").on('click', function() { - $(this).select(); - }); + $(this).select(); + }); function updateInfo() { var url = OC.generateUrl('/apps/serverinfo/update'); @@ -64,16 +64,16 @@ if (typeof cpuLoadChart === 'undefined') { cpuLoadChart = new SmoothieChart( { - millisPerPixel:250, - minValue:0, - grid:{fillStyle:'rgba(0,0,0,0.03)',strokeStyle:'transparent'}, - labels:{fillStyle:'rgba(0,0,0,0.4)', fontSize:12} + millisPerPixel: 250, + minValue: 0, + grid: { fillStyle: 'rgba(0,0,0,0.03)', strokeStyle: 'transparent' }, + labels: { fillStyle: 'rgba(0,0,0,0.4)', fontSize: 12 } }); cpuLoadChart.streamTo(document.getElementById("cpuloadcanvas"), 1000/*delay*/); cpuLoadLine = new TimeSeries(); - cpuLoadChart.addTimeSeries(cpuLoadLine, {lineWidth:1, strokeStyle:'rgb(0, 0, 255)', fillStyle:'rgba(0, 0, 255, 0.2)'}); + cpuLoadChart.addTimeSeries(cpuLoadLine, { lineWidth: 1, strokeStyle: 'rgb(0, 0, 255)', fillStyle: 'rgba(0, 0, 255, 0.2)' }); } - + $('#cpuFooterInfo').text(t('serverinfo', 'Load average')+": "+cpu1+" ("+t('serverinfo', 'Last minute')+")"); cpuLoadLine.append(new Date().getTime(), cpu1); } @@ -93,11 +93,11 @@ if (typeof memoryUsageChart === 'undefined') { memoryUsageChart = new SmoothieChart( { - millisPerPixel:250, - maxValue:memTotalGB, - minValue:0, - grid:{fillStyle:'rgba(0,0,0,0.03)',strokeStyle:'transparent'}, - labels:{fillStyle:'rgba(0,0,0,0.4)', fontSize:12} + millisPerPixel: 250, + maxValue: memTotalGB, + minValue: 0, + grid: { fillStyle: 'rgba(0,0,0,0.03)', strokeStyle: 'transparent' }, + labels: { fillStyle: 'rgba(0,0,0,0.4)', fontSize: 12 } }); memoryUsageChart.streamTo(document.getElementById("memorycanvas"), 1000/*delay*/); memoryUsageLine = new TimeSeries(); @@ -112,52 +112,56 @@ var shares = $('#sharecanvas').data('shares'), shares_data = [shares.num_shares_user, shares.num_shares_groups, shares.num_shares_link, shares.num_fed_shares_sent, shares.num_fed_shares_received], - stepSize = 0; + stepSize = 0; - if (Math.max.apply(null, shares_data) < 10) {stepSize = 1;} + if (Math.max.apply(null, shares_data) < 10) { + stepSize = 1; + } if (typeof sharesChart === 'undefined') { var ctx = document.getElementById("sharecanvas"); sharesChart = new Chart(ctx, { - type: 'bar', - data: { - labels: [t('serverinfo', 'Users'), - t('serverinfo', 'Groups'), - t('serverinfo', 'Links'), - t('serverinfo', 'Federated sent'), - t('serverinfo', 'Federated received')], - datasets: [{ - label: " ", - data: shares_data, - backgroundColor: [ - 'rgba(0, 0, 255, 0.2)', - 'rgba(0, 255, 0, 0.2)', - 'rgba(255, 0, 0, 0.2)', - 'rgba(0, 255, 255, 0.2)', - 'rgba(255, 0, 255, 0.2)' - ], - borderColor: [ - 'rgba(0, 0, 255, 1)', - 'rgba(0, 255, 0, 1)', - 'rgba(255, 0, 0, 1)', - 'rgba(0, 255, 255, 1)', - 'rgba(255, 0, 255, 1)' - ], - borderWidth: 1 - }] - }, - options: { - legend: {display:false}, - scales: { - yAxes: [{ - ticks: { - min: 0, - stepSize: stepSize - } - }] - } - } + type: 'bar', + data: { + labels: [ + t('serverinfo', 'Users'), + t('serverinfo', 'Groups'), + t('serverinfo', 'Links'), + t('serverinfo', 'Federated sent'), + t('serverinfo', 'Federated received') + ], + datasets: [{ + label: " ", + data: shares_data, + backgroundColor: [ + 'rgba(0, 0, 255, 0.2)', + 'rgba(0, 255, 0, 0.2)', + 'rgba(255, 0, 0, 0.2)', + 'rgba(0, 255, 255, 0.2)', + 'rgba(255, 0, 255, 0.2)' + ], + borderColor: [ + 'rgba(0, 0, 255, 1)', + 'rgba(0, 255, 0, 1)', + 'rgba(255, 0, 0, 1)', + 'rgba(0, 255, 255, 1)', + 'rgba(255, 0, 255, 1)' + ], + borderWidth: 1 + }] + }, + options: { + legend: { display:false }, + scales: { + yAxes: [{ + ticks: { + min: 0, + stepSize: stepSize + } + }] + } + } }); } @@ -170,48 +174,52 @@ activeUsers_data = [activeUsers.last24hours, activeUsers.last1hour, activeUsers.last5minutes], stepSize = 0; - if (Math.max.apply(null, activeUsers_data) < 10) {stepSize = 1;} + if (Math.max.apply(null, activeUsers_data) < 10) { + stepSize = 1; + } if (typeof activeusersChart === 'undefined') { var ctx = document.getElementById("activeuserscanvas"); activeusersChart = new Chart(ctx, { - type: 'line', - data: { - labels: [t('serverinfo', 'Last 24 hours'), - t('serverinfo', 'Last 1 hour'), - t('serverinfo', 'Last 5 mins')], - datasets: [{ - label: " ", - data: activeUsers_data, - fill: false, - borderColor: ['rgba(0, 0, 255, 1)'], - borderWidth: 1, - borderDashOffset: 0.0, - borderJoinStyle: 'miter', - pointBorderColor: 'rgba(0, 0, 255, 1)', - pointBackgroundColor: "#fff", - pointBorderWidth: 1, - pointHoverRadius: 5, - pointHoverBackgroundColor: "rgba(0,0,255,0.6)", - pointHoverBorderColor: "rgba(0, 0, 255, 1)", - pointHoverBorderWidth: 1, - pointRadius: 5, - pointHitRadius: 10, - lineTension:0 - }] - }, - options: { - legend: {display:false}, - scales: { - yAxes: [{ - ticks: { - min: 0, - stepSize: stepSize - } - }] - } - } + type: 'line', + data: { + labels: [ + t('serverinfo', 'Last 24 hours'), + t('serverinfo', 'Last 1 hour'), + t('serverinfo', 'Last 5 mins') + ], + datasets: [{ + label: " ", + data: activeUsers_data, + fill: false, + borderColor: [ 'rgba(0, 0, 255, 1)' ], + borderWidth: 1, + borderDashOffset: 0.0, + borderJoinStyle: 'miter', + pointBorderColor: 'rgba(0, 0, 255, 1)', + pointBackgroundColor: "#fff", + pointBorderWidth: 1, + pointHoverRadius: 5, + pointHoverBackgroundColor: "rgba(0,0,255,0.6)", + pointHoverBorderColor: "rgba(0, 0, 255, 1)", + pointHoverBorderWidth: 1, + pointRadius: 5, + pointHitRadius: 10, + lineTension: 0 + }] + }, + options: { + legend: { display:false }, + scales: { + yAxes: [{ + ticks: { + min: 0, + stepSize: stepSize + } + }] + } + } }); } } @@ -237,7 +245,7 @@ cpuloadcanvas.width = newWidth; cpuloadcanvas.height = newHeight; - + mem_canvas.width = newWidth; mem_canvas.height = newHeight; } -- cgit v1.2.3 From 8ab6157f9c239f95196a082eab258e0bf99f17f5 Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Wed, 18 Jul 2018 23:05:36 +0200 Subject: Added clipboard copy button for endpoint link Signed-off-by: Patrik Kernstock --- css/style.css | 9 ++++++++- js/script.js | 45 ++++++++++++++++++++++++++++++++++++++++++++ templates/settings-admin.php | 4 +++- 3 files changed, 56 insertions(+), 2 deletions(-) diff --git a/css/style.css b/css/style.css index 1c3e835..f455c74 100644 --- a/css/style.css +++ b/css/style.css @@ -1,4 +1,11 @@ .barchart { max-width: 700px; max-height: 350px; -} \ No newline at end of file +} + +.clipboardButton { + display: inline-block; + position: relative; + top: 2px; + margin-left: 5px; +} diff --git a/js/script.js b/js/script.js index 24f6d08..9acf393 100644 --- a/js/script.js +++ b/js/script.js @@ -37,6 +37,7 @@ setHumanReadableSizeToElement("dataBaseSize"); setHumanReadableSizeToElement("phpUploadMaxSize"); + initMonitoringLinkToClipboard(); $("#monitoring-endpoint-url").on('click', function() { $(this).select(); }); @@ -250,4 +251,48 @@ mem_canvas.height = newHeight; } + function initMonitoringLinkToClipboard() { + var monAPIBox = $("#ocsEndPoint"); + /* reused from settings/js/authtoken_view.js */ + monAPIBox.find('.clipboardButton').tooltip({placement: 'bottom', title: t('core', 'Copy'), trigger: 'hover'}); + + // Clipboard! + var clipboard = new Clipboard('.clipboardButton'); + clipboard.on('success', function(e) { + var $input = $(e.trigger); + $input.tooltip('hide') + .attr('data-original-title', t('core', 'Copied!')) + .tooltip('fixTitle') + .tooltip({placement: 'bottom', trigger: 'manual'}) + .tooltip('show'); + _.delay(function() { + $input.tooltip('hide') + .attr('data-original-title', t('core', 'Copy')) + .tooltip('fixTitle'); + }, 3000); + }); + clipboard.on('error', function (e) { + var $input = $(e.trigger); + var actionMsg = ''; + if (/iPhone|iPad/i.test(navigator.userAgent)) { + actionMsg = t('core', 'Not supported!'); + } else if (/Mac/i.test(navigator.userAgent)) { + actionMsg = t('core', 'Press ⌘-C to copy.'); + } else { + actionMsg = t('core', 'Press Ctrl-C to copy.'); + } + + $input.tooltip('hide') + .attr('data-original-title', actionMsg) + .tooltip('fixTitle') + .tooltip({placement: 'bottom', trigger: 'manual'}) + .tooltip('show'); + _.delay(function () { + $input.tooltip('hide') + .attr('data-original-title', t('core', 'Copy')) + .tooltip('fixTitle'); + }, 3000); + }); + } + })(jQuery, OC); diff --git a/templates/settings-admin.php b/templates/settings-admin.php index ab4359d..d55053a 100644 --- a/templates/settings-admin.php +++ b/templates/settings-admin.php @@ -25,6 +25,7 @@ script('serverinfo', 'smoothie'); script('serverinfo', 'Chart.min'); style('serverinfo', 'style'); + ?>
@@ -72,6 +73,7 @@ style('serverinfo', 'style'); t('You can connect an external monitoring tool by using this end point:')); ?>

- + +
-- cgit v1.2.3 From a8b908b089a7128d18c937887c0d0b5e098d68d4 Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Wed, 18 Jul 2018 23:10:45 +0200 Subject: Add bottom margin on the endpoint div If there's the default margin-bottom:0 applied, the page starts flickering when the "Copy" tooltip is shown. So this is probably sort of a (working) workaround. Signed-off-by: Patrik Kernstock --- css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/style.css b/css/style.css index f455c74..85bde66 100644 --- a/css/style.css +++ b/css/style.css @@ -9,3 +9,7 @@ top: 2px; margin-left: 5px; } + +#ocsEndPoint { + margin-bottom: 10px; +} -- cgit v1.2.3 From f5d84031962d6bde26b2643852bf54763ed92e27 Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Wed, 18 Jul 2018 23:44:31 +0200 Subject: Re-idented chartx lines Signed-off-by: Patrik Kernstock --- js/script.js | 156 +++++++++++++++++++++++++++++------------------------------ 1 file changed, 78 insertions(+), 78 deletions(-) diff --git a/js/script.js b/js/script.js index 490cc08..375dbd6 100644 --- a/js/script.js +++ b/js/script.js @@ -140,46 +140,46 @@ var ctx = document.getElementById("sharecanvas"); sharesChart = new Chart(ctx, { - type: 'bar', - data: { - labels: [ - t('serverinfo', 'Users'), - t('serverinfo', 'Groups'), - t('serverinfo', 'Links'), - t('serverinfo', 'Federated sent'), - t('serverinfo', 'Federated received') - ], - datasets: [{ - label: " ", - data: shares_data, - backgroundColor: [ - 'rgba(0, 0, 255, 0.2)', - 'rgba(0, 255, 0, 0.2)', - 'rgba(255, 0, 0, 0.2)', - 'rgba(0, 255, 255, 0.2)', - 'rgba(255, 0, 255, 0.2)' - ], - borderColor: [ - 'rgba(0, 0, 255, 1)', - 'rgba(0, 255, 0, 1)', - 'rgba(255, 0, 0, 1)', - 'rgba(0, 255, 255, 1)', - 'rgba(255, 0, 255, 1)' - ], - borderWidth: 1 - }] - }, - options: { - legend: { display:false }, - scales: { - yAxes: [{ - ticks: { - min: 0, - stepSize: stepSize - } - }] - } - } + type: 'bar', + data: { + labels: [ + t('serverinfo', 'Users'), + t('serverinfo', 'Groups'), + t('serverinfo', 'Links'), + t('serverinfo', 'Federated sent'), + t('serverinfo', 'Federated received') + ], + datasets: [{ + label: " ", + data: shares_data, + backgroundColor: [ + 'rgba(0, 0, 255, 0.2)', + 'rgba(0, 255, 0, 0.2)', + 'rgba(255, 0, 0, 0.2)', + 'rgba(0, 255, 255, 0.2)', + 'rgba(255, 0, 255, 0.2)' + ], + borderColor: [ + 'rgba(0, 0, 255, 1)', + 'rgba(0, 255, 0, 1)', + 'rgba(255, 0, 0, 1)', + 'rgba(0, 255, 255, 1)', + 'rgba(255, 0, 255, 1)' + ], + borderWidth: 1 + }] + }, + options: { + legend: { display:false }, + scales: { + yAxes: [{ + ticks: { + min: 0, + stepSize: stepSize + } + }] + } + } }); } @@ -200,44 +200,44 @@ var ctx = document.getElementById("activeuserscanvas"); activeusersChart = new Chart(ctx, { - type: 'line', - data: { - labels: [ - t('serverinfo', 'Last 24 hours'), - t('serverinfo', 'Last 1 hour'), - t('serverinfo', 'Last 5 mins') - ], - datasets: [{ - label: " ", - data: activeUsers_data, - fill: false, - borderColor: [ 'rgba(0, 0, 255, 1)' ], - borderWidth: 1, - borderDashOffset: 0.0, - borderJoinStyle: 'miter', - pointBorderColor: 'rgba(0, 0, 255, 1)', - pointBackgroundColor: "#fff", - pointBorderWidth: 1, - pointHoverRadius: 5, - pointHoverBackgroundColor: "rgba(0,0,255,0.6)", - pointHoverBorderColor: "rgba(0, 0, 255, 1)", - pointHoverBorderWidth: 1, - pointRadius: 5, - pointHitRadius: 10, - lineTension: 0 - }] - }, - options: { - legend: { display:false }, - scales: { - yAxes: [{ - ticks: { - min: 0, - stepSize: stepSize - } - }] - } - } + type: 'line', + data: { + labels: [ + t('serverinfo', 'Last 24 hours'), + t('serverinfo', 'Last 1 hour'), + t('serverinfo', 'Last 5 mins') + ], + datasets: [{ + label: " ", + data: activeUsers_data, + fill: false, + borderColor: [ 'rgba(0, 0, 255, 1)' ], + borderWidth: 1, + borderDashOffset: 0.0, + borderJoinStyle: 'miter', + pointBorderColor: 'rgba(0, 0, 255, 1)', + pointBackgroundColor: "#fff", + pointBorderWidth: 1, + pointHoverRadius: 5, + pointHoverBackgroundColor: "rgba(0,0,255,0.6)", + pointHoverBorderColor: "rgba(0, 0, 255, 1)", + pointHoverBorderWidth: 1, + pointRadius: 5, + pointHitRadius: 10, + lineTension: 0 + }] + }, + options: { + legend: { display:false }, + scales: { + yAxes: [{ + ticks: { + min: 0, + stepSize: stepSize + } + }] + } + } }); } } -- cgit v1.2.3 From d6bd35df24e42a95648f3992365edec500d71fff Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Thu, 19 Jul 2018 16:16:54 +0200 Subject: Fixed width of input field on smaller screens Signed-off-by: Patrik Kernstock --- css/style.css | 5 +++++ templates/settings-admin.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index 85bde66..b2aaefc 100644 --- a/css/style.css +++ b/css/style.css @@ -13,3 +13,8 @@ #ocsEndPoint { margin-bottom: 10px; } + +#monitoring-endpoint-url { + width: 80%; + max-width: 415px; +} \ No newline at end of file diff --git a/templates/settings-admin.php b/templates/settings-admin.php index 9dd975b..efca313 100644 --- a/templates/settings-admin.php +++ b/templates/settings-admin.php @@ -74,7 +74,7 @@ style('serverinfo', 'style'); t('You can connect an external monitoring tool by using this end point:')); ?>

- +
-- cgit v1.2.3 From 5f258e568502114848d8cecadf8f3d4ae91c5364 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Tue, 24 Jul 2018 00:34:11 +0000 Subject: [tx-robot] updated from transifex --- l10n/is.js | 1 + l10n/is.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/is.js b/l10n/is.js index 49a528b..eaddffe 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -15,6 +15,7 @@ OC.L10N.register( "Last 1 hour" : "Síðustu klst", "Last 5 mins" : "Síðustu 5 mín", "Monitoring" : "Vöktun", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Gefur nytsamlegar upplýsingar um vefþjón, svo sem álag á örgjörva, diskanotkun, fjölda notenda, o.s.frv.", "CPU load" : "Örgjörvaálag", "Memory usage" : "Minnisnotkun", "Active users" : "Virkir notendur", diff --git a/l10n/is.json b/l10n/is.json index 4be9c2f..47705ed 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -13,6 +13,7 @@ "Last 1 hour" : "Síðustu klst", "Last 5 mins" : "Síðustu 5 mín", "Monitoring" : "Vöktun", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Gefur nytsamlegar upplýsingar um vefþjón, svo sem álag á örgjörva, diskanotkun, fjölda notenda, o.s.frv.", "CPU load" : "Örgjörvaálag", "Memory usage" : "Minnisnotkun", "Active users" : "Virkir notendur", -- cgit v1.2.3 From 9787cc38b5c81a0bb6bb6d449d645229becfa4e7 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 8 Aug 2018 00:36:05 +0000 Subject: [tx-robot] updated from transifex --- l10n/nb.js | 1 + l10n/nb.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/nb.js b/l10n/nb.js index 1aee856..8542d71 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -15,6 +15,7 @@ OC.L10N.register( "Last 1 hour" : "Siste time", "Last 5 mins" : "Siste 5 minutter", "Monitoring" : "Overvåker", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Gir nyttig serverinformasjon, som CPU-belastning, RAM-bruk, diskbruk, antall brukere, ned mere.", "CPU load" : "CPU last", "Memory usage" : "Minnebruk", "Active users" : "Aktive brukere", diff --git a/l10n/nb.json b/l10n/nb.json index 2e6c63f..ec21db5 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -13,6 +13,7 @@ "Last 1 hour" : "Siste time", "Last 5 mins" : "Siste 5 minutter", "Monitoring" : "Overvåker", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Gir nyttig serverinformasjon, som CPU-belastning, RAM-bruk, diskbruk, antall brukere, ned mere.", "CPU load" : "CPU last", "Memory usage" : "Minnebruk", "Active users" : "Aktive brukere", -- cgit v1.2.3 From 8c5f4a470566b32650af8960b23461150993eb9d Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 10 Aug 2018 00:34:24 +0000 Subject: [tx-robot] updated from transifex --- l10n/ja.js | 11 ++++++----- l10n/ja.json | 11 ++++++----- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/l10n/ja.js b/l10n/ja.js index 973be02..34b6d2e 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -15,18 +15,19 @@ OC.L10N.register( "Last 1 hour" : "1時間以内", "Last 5 mins" : "5分以内", "Monitoring" : "モニタリング", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU負荷、メモリ使用量、ディスク使用量、ユーザー数などの役に立つサーバー情報を提供します。", "CPU load" : "CPU負荷", "Memory usage" : "メモリ使用量", "Active users" : "アクティブユーザー数", "Shares" : "共有数", "Storage" : "ストレージ", "Users:" : "ユーザー数:", - "Files:" : "ファイル数", + "Files:" : "ファイル数:", "PHP" : "PHP", - "Version:" : "バージョン", - "Memory Limit:" : "メモリ制限", - "Max Execution Time:" : "最大実行時間", - "Upload max size:" : "最大アップロードサイズ", + "Version:" : "バージョン:", + "Memory Limit:" : "メモリ制限:", + "Max Execution Time:" : "最大実行時間:", + "Upload max size:" : "最大アップロードサイズ:", "Database" : "データベース", "Type:" : "タイプ:", "Size:" : "サイズ:", diff --git a/l10n/ja.json b/l10n/ja.json index ae1cb9b..ff3ba48 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -13,18 +13,19 @@ "Last 1 hour" : "1時間以内", "Last 5 mins" : "5分以内", "Monitoring" : "モニタリング", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU負荷、メモリ使用量、ディスク使用量、ユーザー数などの役に立つサーバー情報を提供します。", "CPU load" : "CPU負荷", "Memory usage" : "メモリ使用量", "Active users" : "アクティブユーザー数", "Shares" : "共有数", "Storage" : "ストレージ", "Users:" : "ユーザー数:", - "Files:" : "ファイル数", + "Files:" : "ファイル数:", "PHP" : "PHP", - "Version:" : "バージョン", - "Memory Limit:" : "メモリ制限", - "Max Execution Time:" : "最大実行時間", - "Upload max size:" : "最大アップロードサイズ", + "Version:" : "バージョン:", + "Memory Limit:" : "メモリ制限:", + "Max Execution Time:" : "最大実行時間:", + "Upload max size:" : "最大アップロードサイズ:", "Database" : "データベース", "Type:" : "タイプ:", "Size:" : "サイズ:", -- cgit v1.2.3 From 415a57c5610a8cfd87dff5b7d8d4dfe980d1143f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Mon, 13 Aug 2018 00:35:44 +0000 Subject: [tx-robot] updated from transifex --- l10n/zh_CN.js | 1 + l10n/zh_CN.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index d7c54ec..c41ba48 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -15,6 +15,7 @@ OC.L10N.register( "Last 1 hour" : "最近 1 小时", "Last 5 mins" : "最近 5 分钟", "Monitoring" : "监控器", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "提供有用的服务器信息,例如 CPU 负载、内存占用、硬盘占用、在线用户数等。", "CPU load" : "CPU 负载", "Memory usage" : "内存使用", "Active users" : "活跃用户", diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 8887a0d..d6352fb 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -13,6 +13,7 @@ "Last 1 hour" : "最近 1 小时", "Last 5 mins" : "最近 5 分钟", "Monitoring" : "监控器", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "提供有用的服务器信息,例如 CPU 负载、内存占用、硬盘占用、在线用户数等。", "CPU load" : "CPU 负载", "Memory usage" : "内存使用", "Active users" : "活跃用户", -- cgit v1.2.3 From d954915e43caecb39097e886f63f01901cc5076f Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 15 Aug 2018 00:35:40 +0000 Subject: [tx-robot] updated from transifex --- l10n/et_EE.js | 1 + l10n/et_EE.json | 1 + 2 files changed, 2 insertions(+) diff --git a/l10n/et_EE.js b/l10n/et_EE.js index 114ee06..be01238 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -15,6 +15,7 @@ OC.L10N.register( "Last 1 hour" : "Viimane 1 tund", "Last 5 mins" : "Viimased 5 minutit", "Monitoring" : "Monitooring", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Näitab kasulikku infot serveri kohta, näiteks protsessori koormus, mälukasutus, kettaruum, kasutajate arv jne.", "CPU load" : "CPU koormus", "Memory usage" : "Mälukasutus", "Active users" : "Aktiivseid kasutajaid", diff --git a/l10n/et_EE.json b/l10n/et_EE.json index d3b79f7..0ce1ba3 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -13,6 +13,7 @@ "Last 1 hour" : "Viimane 1 tund", "Last 5 mins" : "Viimased 5 minutit", "Monitoring" : "Monitooring", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Näitab kasulikku infot serveri kohta, näiteks protsessori koormus, mälukasutus, kettaruum, kasutajate arv jne.", "CPU load" : "CPU koormus", "Memory usage" : "Mälukasutus", "Active users" : "Aktiivseid kasutajaid", -- cgit v1.2.3 From d59b75dba6f241b00ca3fd76ab02d3d612dc332b Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 16 Aug 2018 00:34:24 +0000 Subject: [tx-robot] updated from transifex --- l10n/es.js | 6 +++--- l10n/es.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/l10n/es.js b/l10n/es.js index 44300f7..963831d 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -16,7 +16,7 @@ OC.L10N.register( "Last 5 mins" : "Últimos 5 minutos", "Monitoring" : "Monitorización", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provee información útil como la carga de la CPU, el uso de RAM y disco, el número de usuarios, etc.", - "CPU load" : "Carga del CPU", + "CPU load" : "Carga de la CPU", "Memory usage" : "Uso de memoria", "Active users" : "Usuarios activos", "Shares" : "Recursos compartidos", @@ -27,11 +27,11 @@ OC.L10N.register( "Version:" : "Versión:", "Memory Limit:" : "Límite de memoria:", "Max Execution Time:" : "Máximo tiempo de ejecución:", - "Upload max size:" : "Máximo tamaño de subida:", + "Upload max size:" : "Tamaño máximo de subida:", "Database" : "Base de datos", "Type:" : "Tipo:", "Size:" : "Tamaño:", "External monitoring tool" : "Herramienta externa de monitorización", - "You can connect an external monitoring tool by using this end point: " : "Puede conectar una herramienta externa de monitorización usando este punto de comunicación:" + "You can connect an external monitoring tool by using this end point: " : "Puede conectar una herramienta externa de monitorización usando este punto de comunicación: " }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/es.json b/l10n/es.json index e078132..76caf3c 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -14,7 +14,7 @@ "Last 5 mins" : "Últimos 5 minutos", "Monitoring" : "Monitorización", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provee información útil como la carga de la CPU, el uso de RAM y disco, el número de usuarios, etc.", - "CPU load" : "Carga del CPU", + "CPU load" : "Carga de la CPU", "Memory usage" : "Uso de memoria", "Active users" : "Usuarios activos", "Shares" : "Recursos compartidos", @@ -25,11 +25,11 @@ "Version:" : "Versión:", "Memory Limit:" : "Límite de memoria:", "Max Execution Time:" : "Máximo tiempo de ejecución:", - "Upload max size:" : "Máximo tamaño de subida:", + "Upload max size:" : "Tamaño máximo de subida:", "Database" : "Base de datos", "Type:" : "Tipo:", "Size:" : "Tamaño:", "External monitoring tool" : "Herramienta externa de monitorización", - "You can connect an external monitoring tool by using this end point: " : "Puede conectar una herramienta externa de monitorización usando este punto de comunicación:" + "You can connect an external monitoring tool by using this end point: " : "Puede conectar una herramienta externa de monitorización usando este punto de comunicación: " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file -- cgit v1.2.3 From 4eaa89fe459b7c92ee9b7838602798ba2e0d63bc Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 17 Aug 2018 14:07:25 +0200 Subject: keep the server setting at the top, right after "overview" and "basic settings" Signed-off-by: Bjoern Schiessle --- lib/Settings/AdminSection.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Settings/AdminSection.php b/lib/Settings/AdminSection.php index 5f61267..eb74dfa 100644 --- a/lib/Settings/AdminSection.php +++ b/lib/Settings/AdminSection.php @@ -63,10 +63,10 @@ class AdminSection implements IIconSection { * the settings navigation. The sections are arranged in ascending order of * the priority values. It is required to return a value between 0 and 99. * - * keep the server setting at the top, right after "server settings" + * keep the server setting at the top, right after "overview" and "basic settings" */ public function getPriority() { - return 0; + return 1; } /** -- cgit v1.2.3 From e78934d58e97b9284220dc1757466bb143d136ab Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 17 Aug 2018 14:41:10 +0200 Subject: fix unit tests Signed-off-by: Bjoern Schiessle --- tests/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 7a1d136..c8d7a7b 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -6,7 +6,7 @@ if (!defined('PHPUNIT_RUN')) { require_once __DIR__ . '/../../../lib/base.php'; -if(!class_exists('PHPUnit_Framework_TestCase')) { +if(!class_exists('\PHPUnit\Framework\TestCase')) { require_once('PHPUnit/Autoload.php'); } \OC_App::loadApp('serverinfo'); -- cgit v1.2.3 From 9ddd4449ac3d91058ec81c74726d07c34db0391f Mon Sep 17 00:00:00 2001 From: rakekniven Date: Tue, 21 Aug 2018 07:45:24 +0200 Subject: Fixed encoding of mac char Signed-off-by: Mark Ziegler --- js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/script.js b/js/script.js index 375dbd6..5367cfe 100644 --- a/js/script.js +++ b/js/script.js @@ -294,7 +294,7 @@ if (/iPhone|iPad/i.test(navigator.userAgent)) { actionMsg = t('core', 'Not supported!'); } else if (/Mac/i.test(navigator.userAgent)) { - actionMsg = t('core', 'Press ⌘-C to copy.'); + actionMsg = t('core', 'Press ⌘-C to copy.'); } else { actionMsg = t('core', 'Press Ctrl-C to copy.'); } -- cgit v1.2.3 From 7bdf830d50937af4081c2da5ec788438c4f0d2b3 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 22 Aug 2018 00:34:09 +0000 Subject: [tx-robot] updated from transifex --- l10n/de.js | 6 ++++++ l10n/de.json | 6 ++++++ l10n/de_DE.js | 6 ++++++ l10n/de_DE.json | 6 ++++++ l10n/it.js | 6 ++++++ l10n/it.json | 6 ++++++ l10n/pt_BR.js | 6 ++++++ l10n/pt_BR.json | 6 ++++++ l10n/ru.js | 6 ++++++ l10n/ru.json | 6 ++++++ l10n/tr.js | 6 ++++++ l10n/tr.json | 6 ++++++ 12 files changed, 72 insertions(+) diff --git a/l10n/de.js b/l10n/de.js index fc4f1d8..fa54c30 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -14,6 +14,11 @@ OC.L10N.register( "Last 24 hours" : "Letzte 24 Stunden", "Last 1 hour" : "Letzte Stunde", "Last 5 mins" : "Letzte 5 Minuten", + "Copy" : "Kopieren", + "Copied!" : "Kopiert!", + "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", + "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", "CPU load" : "CPU-Auslastung", @@ -32,6 +37,7 @@ OC.L10N.register( "Type:" : "Art:", "Size:" : "Größe:", "External monitoring tool" : "Externes Überwachungsprogramm", + "You can connect an external monitoring tool by using this end point:" : "Durch Verwendung des folgenden Zugangspunktes, kann ein externes Überwachungsprogramm verwendet werden:", "You can connect an external monitoring tool by using this end point: " : "Durch Verwendung des folgenden Zugangspunktes, kann ein externes Überwachungsprogramm verwendet werden:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de.json b/l10n/de.json index afb0e6b..e2e42a2 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -12,6 +12,11 @@ "Last 24 hours" : "Letzte 24 Stunden", "Last 1 hour" : "Letzte Stunde", "Last 5 mins" : "Letzte 5 Minuten", + "Copy" : "Kopieren", + "Copied!" : "Kopiert!", + "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", + "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", "CPU load" : "CPU-Auslastung", @@ -30,6 +35,7 @@ "Type:" : "Art:", "Size:" : "Größe:", "External monitoring tool" : "Externes Überwachungsprogramm", + "You can connect an external monitoring tool by using this end point:" : "Durch Verwendung des folgenden Zugangspunktes, kann ein externes Überwachungsprogramm verwendet werden:", "You can connect an external monitoring tool by using this end point: " : "Durch Verwendung des folgenden Zugangspunktes, kann ein externes Überwachungsprogramm verwendet werden:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/de_DE.js b/l10n/de_DE.js index fc4f1d8..fa54c30 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -14,6 +14,11 @@ OC.L10N.register( "Last 24 hours" : "Letzte 24 Stunden", "Last 1 hour" : "Letzte Stunde", "Last 5 mins" : "Letzte 5 Minuten", + "Copy" : "Kopieren", + "Copied!" : "Kopiert!", + "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", + "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", "CPU load" : "CPU-Auslastung", @@ -32,6 +37,7 @@ OC.L10N.register( "Type:" : "Art:", "Size:" : "Größe:", "External monitoring tool" : "Externes Überwachungsprogramm", + "You can connect an external monitoring tool by using this end point:" : "Durch Verwendung des folgenden Zugangspunktes, kann ein externes Überwachungsprogramm verwendet werden:", "You can connect an external monitoring tool by using this end point: " : "Durch Verwendung des folgenden Zugangspunktes, kann ein externes Überwachungsprogramm verwendet werden:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de_DE.json b/l10n/de_DE.json index afb0e6b..e2e42a2 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -12,6 +12,11 @@ "Last 24 hours" : "Letzte 24 Stunden", "Last 1 hour" : "Letzte Stunde", "Last 5 mins" : "Letzte 5 Minuten", + "Copy" : "Kopieren", + "Copied!" : "Kopiert!", + "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", + "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", "CPU load" : "CPU-Auslastung", @@ -30,6 +35,7 @@ "Type:" : "Art:", "Size:" : "Größe:", "External monitoring tool" : "Externes Überwachungsprogramm", + "You can connect an external monitoring tool by using this end point:" : "Durch Verwendung des folgenden Zugangspunktes, kann ein externes Überwachungsprogramm verwendet werden:", "You can connect an external monitoring tool by using this end point: " : "Durch Verwendung des folgenden Zugangspunktes, kann ein externes Überwachungsprogramm verwendet werden:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/it.js b/l10n/it.js index 397f7e6..9fab1a0 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -14,6 +14,11 @@ OC.L10N.register( "Last 24 hours" : "Ultime 24 ore", "Last 1 hour" : "Ultima ora", "Last 5 mins" : "Ultimi 5 minuti", + "Copy" : "Copia", + "Copied!" : "Copiati!", + "Not supported!" : "Non supportato!", + "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", + "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", "Monitoring" : "Monitoraggio", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornisce informazioni utili sul server, come carico della CPU, utilizzo della memoria, utilizzo del disco, numero di utenti, ecc.", "CPU load" : "Carico CPU", @@ -32,6 +37,7 @@ OC.L10N.register( "Type:" : "Tipo:", "Size:" : "Dimensione:", "External monitoring tool" : "Strumento di controllo esterno", + "You can connect an external monitoring tool by using this end point:" : "Puoi collegare uno strumento di controllo esterno utilizzando questo terminatore: ", "You can connect an external monitoring tool by using this end point: " : "Puoi collegare uno strumento di controllo esterno utilizzando questo terminatore: " }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/it.json b/l10n/it.json index 9c00bb5..2a0b0d6 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -12,6 +12,11 @@ "Last 24 hours" : "Ultime 24 ore", "Last 1 hour" : "Ultima ora", "Last 5 mins" : "Ultimi 5 minuti", + "Copy" : "Copia", + "Copied!" : "Copiati!", + "Not supported!" : "Non supportato!", + "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", + "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", "Monitoring" : "Monitoraggio", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornisce informazioni utili sul server, come carico della CPU, utilizzo della memoria, utilizzo del disco, numero di utenti, ecc.", "CPU load" : "Carico CPU", @@ -30,6 +35,7 @@ "Type:" : "Tipo:", "Size:" : "Dimensione:", "External monitoring tool" : "Strumento di controllo esterno", + "You can connect an external monitoring tool by using this end point:" : "Puoi collegare uno strumento di controllo esterno utilizzando questo terminatore: ", "You can connect an external monitoring tool by using this end point: " : "Puoi collegare uno strumento di controllo esterno utilizzando questo terminatore: " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 020da20..07eae1d 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -14,6 +14,11 @@ OC.L10N.register( "Last 24 hours" : "Últimas 24 horas", "Last 1 hour" : "Última 1 hora", "Last 5 mins" : "Últimos 5 minutos", + "Copy" : "Copiar", + "Copied!" : "Copiado!", + "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "Monitoring" : "Monitoramento", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece informações úteis do servidor, como carga de CPU, uso de RAM, uso do disco, número de usuários, etc.", "CPU load" : "Carga da CPU", @@ -32,6 +37,7 @@ OC.L10N.register( "Type:" : "Tipo:", "Size:" : "Tamanho:", "External monitoring tool" : "Ferramenta de monitoramento externo", + "You can connect an external monitoring tool by using this end point:" : "Você pode conectar uma ferramenta de monitoramento externa usando este ponto final:", "You can connect an external monitoring tool by using this end point: " : "Você pode conectar uma ferramenta de monitoramento externa usando este ponto: " }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index a9b21f4..f5a8799 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -12,6 +12,11 @@ "Last 24 hours" : "Últimas 24 horas", "Last 1 hour" : "Última 1 hora", "Last 5 mins" : "Últimos 5 minutos", + "Copy" : "Copiar", + "Copied!" : "Copiado!", + "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "Monitoring" : "Monitoramento", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece informações úteis do servidor, como carga de CPU, uso de RAM, uso do disco, número de usuários, etc.", "CPU load" : "Carga da CPU", @@ -30,6 +35,7 @@ "Type:" : "Tipo:", "Size:" : "Tamanho:", "External monitoring tool" : "Ferramenta de monitoramento externo", + "You can connect an external monitoring tool by using this end point:" : "Você pode conectar uma ferramenta de monitoramento externa usando este ponto final:", "You can connect an external monitoring tool by using this end point: " : "Você pode conectar uma ferramenta de monitoramento externa usando este ponto: " },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/ru.js b/l10n/ru.js index feb75c3..c868cd7 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -14,6 +14,11 @@ OC.L10N.register( "Last 24 hours" : "За 24 часа", "Last 1 hour" : "За 1 час", "Last 5 mins" : "За 5 минут", + "Copy" : "Копировать", + "Copied!" : "Скопировано!", + "Not supported!" : "Не поддерживается!", + "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования.", + "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", "Monitoring" : "Мониторинг", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Предоставляет полезную информацию о сервере, такую как загрузка процессора, использование ОЗУ, диска, количество пользователей и т.д.", "CPU load" : "Загрузка процессора", @@ -32,6 +37,7 @@ OC.L10N.register( "Type:" : "Тип:", "Size:" : "Размер:", "External monitoring tool" : "Внешний мониторинг", + "You can connect an external monitoring tool by using this end point:" : "Вы можете подключить внешний мониторинг используя этот адрес:", "You can connect an external monitoring tool by using this end point: " : "Вы можете подключить внешний мониторинг используя этот адрес:" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/l10n/ru.json b/l10n/ru.json index 297fc29..c552241 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -12,6 +12,11 @@ "Last 24 hours" : "За 24 часа", "Last 1 hour" : "За 1 час", "Last 5 mins" : "За 5 минут", + "Copy" : "Копировать", + "Copied!" : "Скопировано!", + "Not supported!" : "Не поддерживается!", + "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования.", + "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", "Monitoring" : "Мониторинг", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Предоставляет полезную информацию о сервере, такую как загрузка процессора, использование ОЗУ, диска, количество пользователей и т.д.", "CPU load" : "Загрузка процессора", @@ -30,6 +35,7 @@ "Type:" : "Тип:", "Size:" : "Размер:", "External monitoring tool" : "Внешний мониторинг", + "You can connect an external monitoring tool by using this end point:" : "Вы можете подключить внешний мониторинг используя этот адрес:", "You can connect an external monitoring tool by using this end point: " : "Вы можете подключить внешний мониторинг используя этот адрес:" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/l10n/tr.js b/l10n/tr.js index 95d4653..7dd6e97 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -14,6 +14,11 @@ OC.L10N.register( "Last 24 hours" : "Son 24 saat", "Last 1 hour" : "Son 1 saat", "Last 5 mins" : "Son 5 dakika", + "Copy" : "Kopyala", + "Copied!" : "Kopyalandı!", + "Not supported!" : "Desteklenmiyor!", + "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", + "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", "Monitoring" : "İzleniyor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu hakkında çeşitli bilgiler sağlar. ", "CPU load" : "İşlemci yükü", @@ -32,6 +37,7 @@ OC.L10N.register( "Type:" : "Tür:", "Size:" : "Boyut:", "External monitoring tool" : "Dış izleme aracı", + "You can connect an external monitoring tool by using this end point:" : "Bu uç noktasını kullanarak bir dış izleme aracı bağlayabilirsiniz:", "You can connect an external monitoring tool by using this end point: " : "Bu uç noktasını kullanarak bir dış izleme aracı bağlayabilirsiniz:" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/tr.json b/l10n/tr.json index 3fffd59..85e0a13 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -12,6 +12,11 @@ "Last 24 hours" : "Son 24 saat", "Last 1 hour" : "Son 1 saat", "Last 5 mins" : "Son 5 dakika", + "Copy" : "Kopyala", + "Copied!" : "Kopyalandı!", + "Not supported!" : "Desteklenmiyor!", + "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", + "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", "Monitoring" : "İzleniyor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu hakkında çeşitli bilgiler sağlar. ", "CPU load" : "İşlemci yükü", @@ -30,6 +35,7 @@ "Type:" : "Tür:", "Size:" : "Boyut:", "External monitoring tool" : "Dış izleme aracı", + "You can connect an external monitoring tool by using this end point:" : "Bu uç noktasını kullanarak bir dış izleme aracı bağlayabilirsiniz:", "You can connect an external monitoring tool by using this end point: " : "Bu uç noktasını kullanarak bir dış izleme aracı bağlayabilirsiniz:" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file -- cgit v1.2.3 From 0612c05f2b293158d09f66b67b5cd6754995f336 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Thu, 23 Aug 2018 00:38:23 +0000 Subject: [tx-robot] updated from transifex --- l10n/de.js | 1 - l10n/de.json | 1 - l10n/de_DE.js | 1 - l10n/de_DE.json | 1 - l10n/es.js | 5 +++++ l10n/es.json | 5 +++++ l10n/it.js | 1 - l10n/it.json | 1 - l10n/pt_BR.js | 1 - l10n/pt_BR.json | 1 - l10n/ru.js | 1 - l10n/ru.json | 1 - l10n/tr.js | 1 - l10n/tr.json | 1 - 14 files changed, 10 insertions(+), 12 deletions(-) diff --git a/l10n/de.js b/l10n/de.js index fa54c30..5c6b7db 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -17,7 +17,6 @@ OC.L10N.register( "Copy" : "Kopieren", "Copied!" : "Kopiert!", "Not supported!" : "Nicht unterstützt!", - "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", diff --git a/l10n/de.json b/l10n/de.json index e2e42a2..9c67cd7 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -15,7 +15,6 @@ "Copy" : "Kopieren", "Copied!" : "Kopiert!", "Not supported!" : "Nicht unterstützt!", - "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index fa54c30..5c6b7db 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -17,7 +17,6 @@ OC.L10N.register( "Copy" : "Kopieren", "Copied!" : "Kopiert!", "Not supported!" : "Nicht unterstützt!", - "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index e2e42a2..9c67cd7 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -15,7 +15,6 @@ "Copy" : "Kopieren", "Copied!" : "Kopiert!", "Not supported!" : "Nicht unterstützt!", - "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", diff --git a/l10n/es.js b/l10n/es.js index 963831d..2811014 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -14,6 +14,10 @@ OC.L10N.register( "Last 24 hours" : "Últimas 24 horas", "Last 1 hour" : "Última hora", "Last 5 mins" : "Últimos 5 minutos", + "Copy" : "Copiar", + "Copied!" : "Copiado.", + "Not supported!" : "No está soportado.", + "Press Ctrl-C to copy." : "Pulsa Ctrl-C para copiar.", "Monitoring" : "Monitorización", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provee información útil como la carga de la CPU, el uso de RAM y disco, el número de usuarios, etc.", "CPU load" : "Carga de la CPU", @@ -32,6 +36,7 @@ OC.L10N.register( "Type:" : "Tipo:", "Size:" : "Tamaño:", "External monitoring tool" : "Herramienta externa de monitorización", + "You can connect an external monitoring tool by using this end point:" : "Puedes conectar una herramienta de monitorización externa usando este endpoint:", "You can connect an external monitoring tool by using this end point: " : "Puede conectar una herramienta externa de monitorización usando este punto de comunicación: " }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/es.json b/l10n/es.json index 76caf3c..1d938e3 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -12,6 +12,10 @@ "Last 24 hours" : "Últimas 24 horas", "Last 1 hour" : "Última hora", "Last 5 mins" : "Últimos 5 minutos", + "Copy" : "Copiar", + "Copied!" : "Copiado.", + "Not supported!" : "No está soportado.", + "Press Ctrl-C to copy." : "Pulsa Ctrl-C para copiar.", "Monitoring" : "Monitorización", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provee información útil como la carga de la CPU, el uso de RAM y disco, el número de usuarios, etc.", "CPU load" : "Carga de la CPU", @@ -30,6 +34,7 @@ "Type:" : "Tipo:", "Size:" : "Tamaño:", "External monitoring tool" : "Herramienta externa de monitorización", + "You can connect an external monitoring tool by using this end point:" : "Puedes conectar una herramienta de monitorización externa usando este endpoint:", "You can connect an external monitoring tool by using this end point: " : "Puede conectar una herramienta externa de monitorización usando este punto de comunicación: " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/it.js b/l10n/it.js index 9fab1a0..8e353bb 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -17,7 +17,6 @@ OC.L10N.register( "Copy" : "Copia", "Copied!" : "Copiati!", "Not supported!" : "Non supportato!", - "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", "Monitoring" : "Monitoraggio", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornisce informazioni utili sul server, come carico della CPU, utilizzo della memoria, utilizzo del disco, numero di utenti, ecc.", diff --git a/l10n/it.json b/l10n/it.json index 2a0b0d6..f26509c 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -15,7 +15,6 @@ "Copy" : "Copia", "Copied!" : "Copiati!", "Not supported!" : "Non supportato!", - "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", "Monitoring" : "Monitoraggio", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornisce informazioni utili sul server, come carico della CPU, utilizzo della memoria, utilizzo del disco, numero di utenti, ecc.", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index 07eae1d..ddffa3e 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -17,7 +17,6 @@ OC.L10N.register( "Copy" : "Copiar", "Copied!" : "Copiado!", "Not supported!" : "Não suportado!", - "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "Monitoring" : "Monitoramento", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece informações úteis do servidor, como carga de CPU, uso de RAM, uso do disco, número de usuários, etc.", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index f5a8799..1a164e7 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -15,7 +15,6 @@ "Copy" : "Copiar", "Copied!" : "Copiado!", "Not supported!" : "Não suportado!", - "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "Monitoring" : "Monitoramento", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece informações úteis do servidor, como carga de CPU, uso de RAM, uso do disco, número de usuários, etc.", diff --git a/l10n/ru.js b/l10n/ru.js index c868cd7..1e0ea2e 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -17,7 +17,6 @@ OC.L10N.register( "Copy" : "Копировать", "Copied!" : "Скопировано!", "Not supported!" : "Не поддерживается!", - "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования.", "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", "Monitoring" : "Мониторинг", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Предоставляет полезную информацию о сервере, такую как загрузка процессора, использование ОЗУ, диска, количество пользователей и т.д.", diff --git a/l10n/ru.json b/l10n/ru.json index c552241..eba1314 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -15,7 +15,6 @@ "Copy" : "Копировать", "Copied!" : "Скопировано!", "Not supported!" : "Не поддерживается!", - "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования.", "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", "Monitoring" : "Мониторинг", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Предоставляет полезную информацию о сервере, такую как загрузка процессора, использование ОЗУ, диска, количество пользователей и т.д.", diff --git a/l10n/tr.js b/l10n/tr.js index 7dd6e97..4c2259b 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -17,7 +17,6 @@ OC.L10N.register( "Copy" : "Kopyala", "Copied!" : "Kopyalandı!", "Not supported!" : "Desteklenmiyor!", - "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", "Monitoring" : "İzleniyor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu hakkında çeşitli bilgiler sağlar. ", diff --git a/l10n/tr.json b/l10n/tr.json index 85e0a13..a88c8a4 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -15,7 +15,6 @@ "Copy" : "Kopyala", "Copied!" : "Kopyalandı!", "Not supported!" : "Desteklenmiyor!", - "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", "Monitoring" : "İzleniyor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu hakkında çeşitli bilgiler sağlar. ", -- cgit v1.2.3 From 3374b25bfde964c4c0aae60af0d8ac0013486f72 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Fri, 24 Aug 2018 00:34:48 +0000 Subject: [tx-robot] updated from transifex --- l10n/de.js | 1 + l10n/de.json | 1 + l10n/de_DE.js | 1 + l10n/de_DE.json | 1 + l10n/it.js | 1 + l10n/it.json | 1 + l10n/pt_BR.js | 1 + l10n/pt_BR.json | 1 + l10n/tr.js | 1 + l10n/tr.json | 1 + 10 files changed, 10 insertions(+) diff --git a/l10n/de.js b/l10n/de.js index 5c6b7db..aee18f7 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -17,6 +17,7 @@ OC.L10N.register( "Copy" : "Kopieren", "Copied!" : "Kopiert!", "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", diff --git a/l10n/de.json b/l10n/de.json index 9c67cd7..33533d4 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -15,6 +15,7 @@ "Copy" : "Kopieren", "Copied!" : "Kopiert!", "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", diff --git a/l10n/de_DE.js b/l10n/de_DE.js index 5c6b7db..9a91da2 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -17,6 +17,7 @@ OC.L10N.register( "Copy" : "Kopieren", "Copied!" : "Kopiert!", "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", diff --git a/l10n/de_DE.json b/l10n/de_DE.json index 9c67cd7..e948fd9 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -15,6 +15,7 @@ "Copy" : "Kopieren", "Copied!" : "Kopiert!", "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", "Press Ctrl-C to copy." : "Ctrl-C zum Kopieren drücken.", "Monitoring" : "Information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nütztliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", diff --git a/l10n/it.js b/l10n/it.js index 8e353bb..2cbe94b 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -17,6 +17,7 @@ OC.L10N.register( "Copy" : "Copia", "Copied!" : "Copiati!", "Not supported!" : "Non supportato!", + "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", "Monitoring" : "Monitoraggio", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornisce informazioni utili sul server, come carico della CPU, utilizzo della memoria, utilizzo del disco, numero di utenti, ecc.", diff --git a/l10n/it.json b/l10n/it.json index f26509c..031c615 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -15,6 +15,7 @@ "Copy" : "Copia", "Copied!" : "Copiati!", "Not supported!" : "Non supportato!", + "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", "Monitoring" : "Monitoraggio", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornisce informazioni utili sul server, come carico della CPU, utilizzo della memoria, utilizzo del disco, numero di utenti, ecc.", diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index ddffa3e..bea8ea0 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -17,6 +17,7 @@ OC.L10N.register( "Copy" : "Copiar", "Copied!" : "Copiado!", "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "Monitoring" : "Monitoramento", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece informações úteis do servidor, como carga de CPU, uso de RAM, uso do disco, número de usuários, etc.", diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 1a164e7..cd0ee62 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -15,6 +15,7 @@ "Copy" : "Copiar", "Copied!" : "Copiado!", "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "Monitoring" : "Monitoramento", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece informações úteis do servidor, como carga de CPU, uso de RAM, uso do disco, número de usuários, etc.", diff --git a/l10n/tr.js b/l10n/tr.js index 4c2259b..583c620 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -17,6 +17,7 @@ OC.L10N.register( "Copy" : "Kopyala", "Copied!" : "Kopyalandı!", "Not supported!" : "Desteklenmiyor!", + "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", "Monitoring" : "İzleniyor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu hakkında çeşitli bilgiler sağlar. ", diff --git a/l10n/tr.json b/l10n/tr.json index a88c8a4..707c7a6 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -15,6 +15,7 @@ "Copy" : "Kopyala", "Copied!" : "Kopyalandı!", "Not supported!" : "Desteklenmiyor!", + "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", "Monitoring" : "İzleniyor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu hakkında çeşitli bilgiler sağlar. ", -- cgit v1.2.3