summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-06-11 10:46:02 +0200
committerLukas Reschke <lukas@owncloud.com>2016-06-11 10:46:02 +0200
commit218e4b48ad3df3ed120b999611e4bbf29601fa0c (patch)
treec47c208e70a92a3b339347081269a9b4d7367a02 /apps
parent7a10bedbc61656e7da9456f7d21ccf5ab203e782 (diff)
downloadnextcloud-server-218e4b48ad3df3ed120b999611e4bbf29601fa0c.tar.gz
nextcloud-server-218e4b48ad3df3ed120b999611e4bbf29601fa0c.zip
Adjust some more branding texts
Replaces ownCloud with Nextcloud in the user-facing messages
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/connector/sabre/dummygetresponseplugin.php2
-rw-r--r--apps/federation/templates/settings-admin.php10
-rw-r--r--apps/files_sharing/templates/public.php2
3 files changed, 7 insertions, 7 deletions
diff --git a/apps/dav/lib/connector/sabre/dummygetresponseplugin.php b/apps/dav/lib/connector/sabre/dummygetresponseplugin.php
index b10d5aaab36..0eb11bbca83 100644
--- a/apps/dav/lib/connector/sabre/dummygetresponseplugin.php
+++ b/apps/dav/lib/connector/sabre/dummygetresponseplugin.php
@@ -57,7 +57,7 @@ class DummyGetResponsePlugin extends \Sabre\DAV\ServerPlugin {
*/
function httpGet(RequestInterface $request, ResponseInterface $response) {
$string = 'This is the WebDAV interface. It can only be accessed by ' .
- 'WebDAV clients such as the ownCloud desktop sync client.';
+ 'WebDAV clients such as the Nextcloud desktop sync client.';
$stream = fopen('php://memory','r+');
fwrite($stream, $string);
rewind($stream);
diff --git a/apps/federation/templates/settings-admin.php b/apps/federation/templates/settings-admin.php
index 77c552ee789..b79e8be2d69 100644
--- a/apps/federation/templates/settings-admin.php
+++ b/apps/federation/templates/settings-admin.php
@@ -8,17 +8,17 @@ style('federation', 'settings-admin')
?>
<div id="ocFederationSettings" class="section">
<h2><?php p($l->t('Federation')); ?></h2>
- <em><?php p($l->t('ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing.')); ?></em>
+ <em><?php p($l->t('Nextcloud Federation allows you to connect with other trusted Nextclouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing.')); ?></em>
<p>
<input id="autoAddServers" type="checkbox" class="checkbox" <?php if($_['autoAddServers']) p('checked'); ?> />
- <label for="autoAddServers">Add server automatically once a federated share was created successfully</label>
+ <label for="autoAddServers"><?php p($l->t('Add server automatically once a federated share was created successfully')) ?></label>
</p>
- <h3>Trusted ownCloud Servers</h3>
+ <h3><?php p($l->t('Trusted Nextcloud Servers')) ?></h3>
<p id="ocFederationAddServer">
- <button id="ocFederationAddServerButton" class="">+ Add ownCloud server</button>
- <input id="serverUrl" class="hidden" type="text" value="" placeholder="ownCloud Server" name="server_url"/>
+ <button id="ocFederationAddServerButton" class=""><?php p($l->t('+ Add Nextcloud server')) ?></button>
+ <input id="serverUrl" class="hidden" type="text" value="" placeholder="Nextcloud Server" name="server_url"/>
<span class="msg"></span>
</p>
<ul id="listOfTrustedServers">
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php
index ae00b01dca2..b9235b7ebcc 100644
--- a/apps/files_sharing/templates/public.php
+++ b/apps/files_sharing/templates/public.php
@@ -73,7 +73,7 @@ $thumbSize = 1024;
?>
<span id="save" data-protected="<?php p($_['protected']) ?>"
data-owner-display-name="<?php p($_['displayName']) ?>" data-owner="<?php p($_['owner']) ?>" data-name="<?php p($_['filename']) ?>">
- <button id="save-button"><?php p($l->t('Add to your ownCloud')) ?></button>
+ <button id="save-button"><?php p($l->t('Add to your Nextcloud')) ?></button>
<form class="save-form hidden" action="#">
<input type="text" id="remote_address" placeholder="example.com/owncloud"/>
<button id="save-button-confirm" class="icon-confirm svg" disabled></button>